Indexes

From MyWiki
Revision as of 13:36, 18 September 2014 by George2 (Talk | contribs)

Jump to: navigation, search

SHOW INDEX FROM yourtable;



create index your_index_name on your_table_name(your_column_name) using HASH;
or
create index your_index_name on your_table_name(your_column_name) using BTREE;