mysql索引
索引 index普通索引、唯一性索引、全文索引、单列索引、多列索引、空间索引。1、添加索引alter table 表名 add index 索引名(字段)create index 索引名 on 表名(字段)2、删除索引alter table 表名 drop index 索引名drop index 索引名 on 表名select name,age from user where id = 10;where 后面的字段加索引,select 后面的字段不加索引。事务 transact
原创
2020-05-13 20:20:00 ·
116 阅读 ·
1 评论