Mario Trucco
0
Q:

how to 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;
3
# index_name will identify your index for future reference
CREATE INDEX index_name ON table_name (column_name);
0

New to Communities?

Join the community