标签:分类 run 主键约束 nbsp mysql https 不为 联合主键 字段
一、Mysql索引
索引分类 1.普通索引index :加速查找 2.唯一索引 主键索引:primary key :加速查找+约束(不为空且唯一) 唯一索引:unique:加速查找+约束 (唯一) 3.联合索引 -primary key(id,name):联合主键索引 -unique(id,name):联合唯一索引 -index(id,name):联合普通索引 4.全文索引fulltext :用于搜索很长一篇文章的时候,效果最好。
create index name on s1(name); #添加普通索引 create unique age on s1(age);添加唯一索引 alter table s1 add primary key(id); #添加住建索引,也就是给id字段增加一个主键约束 create index name on s1(id,name); #添加普通联合索引
引用:
https://www.cnblogs.com/bypp/p/7755307.html
http://www.runoob.com/mysql/mysql-data-types.html
https://www.cnblogs.com/chenshishuo/p/5030029.html
标签:分类 run 主键约束 nbsp mysql https 不为 联合主键 字段
原文地址:https://www.cnblogs.com/chrisweiii/p/10178662.html