Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

create index mysql

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;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #index #mysql
ADD COMMENT
Topic
Name
6+7 =