📜  mysql alter table add index - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:32.036000             🧑  作者: Mango

代码示例3
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;