摘要: 索引的作用就是约束条件加加速查找的功能,没有索引就是遍历操作速度很慢。 索引的种类: 单列索引: 主键索引:加速查找 + 不能为空 + 不能重复。 普通索引:加速查找。 create table in1( nid int not null auto_increment primary key, na 阅读全文
posted @ 2017-09-27 19:09 JeffD 阅读(163) 评论(0) 推荐(0) 编辑