如果有天我们湮没在人潮之中,庸碌一生,那是因为我们没有努力要活得丰盛。善于与人沟通,适度采纳别人意见。
CREATE INDEX 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 | RTREE}
-- 创建无索引的表格
create table testNoPK (
id int not null,
name varchar(10)
);
-- 创建普通索引
create index IDX_testNoPK_Name on testNoPK (name);
以上就是MySQL创建索引(CreateIndex)的方法和语法结构及例子。关于过去,关于你,告一段落;关于未来,关于我,敬请期待。更多关于MySQL创建索引(CreateIndex)的方法和语法结构及例子请关注haodaima.com其它相关文章!