关于这篇文章的第一个答案:Update one MySQL table with values from another 它指出,为了加快查询速度,必须创建一个索引。我该怎么做?
我知道这很简单,我无法弄清楚如何......
答案 0 :(得分:3)
答案 1 :(得分:0)
ALTER TABLE `your_table` ADD INDEX `your_index_name`
(`column_that_should_be_indexed`)
用于创建索引的 general syntax 如下 -
CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name
[index_type]
ON tbl_name (index_col_name,...)
[index_type]
index_col_name:
col_name [(length)] [ASC | DESC]
index_type:
USING {BTREE | HASH}
答案 2 :(得分:0)
典型的语法是:
create index <index name> on <tablename>(<one or more columns>);
例如:
create index t_col1_col2 on t(col1, col2);
请注意,当您将列声明为主键或唯一(或添加唯一约束)时,也会创建索引。
此外,索引有时在复合时最有效 - 也就是说,它们包含多个列。