mysql索引
Posted Chim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql索引相关的知识,希望对你有一定的参考价值。
1.普通索引
2.唯一性索引
3.主键
创建索引
ALTER TABLE test ADD INDEX(c1); # alter table <tablename> add index(字段名) 一定加括号 ALTER TABLE test ADD UNIQUE(c1); # alter table <tablename> add unique(字段名) ALTER TABLE test ADD PRIMATY KEY(c1); # alter table <tablename> add primary key(字段名)
查看索引
show index from <tablename>; # 或者 show keys from <tablename>
以上是关于mysql索引的主要内容,如果未能解决你的问题,请参考以下文章
javascript UV Index Monitor App订阅PubNub并显示UV索引值。博文的代码片段。在这里查看项目:https:// githu
c_cpp UV Index Indicator订阅PubNub并使用颜色显示UV索引值。博文的代码片段。在这里查看项目:https:/