Assuming you want to create the index ‘name’ on column ‘name’ on table ‘test’:
ALTER TABLE test ADD INDEX name (name) ;
Where the first ‘name’ is the name of the index and the ‘name’ in parenthesis is the column name.
If you want to index 2 columns:
ALTER TABLE test ADD INDEX name (name, pass) ;

I'm a programmer at 