8 创建表时创建索引:create table 表名 (字段名 字段类型 ,索引类型(字段名))(index()普通索引,unique index 索引名(字段名)唯一性索引, fulltext index 索引名(字段名)全文索引,index 索引名(字段名列表) 多列索引,spatial index 索引名(字段名) 空间索引);
9 在已存在的表上建立索引:create 索引类型 索引名 on 表名(加索引的字段名);(index()普通索引,unique index 索引名(字段名)唯一性索引, fulltext index 索引名(字段名)全文索引,index 索引名(字段名列表) 多列索引,spatial index 索引名(字段名) 空间索引)
10 修改索引:alter table 表名 add 索引类型 索引名(字段名);
11 删除索引:drop 索引类型 索引名 on 表名;
用户管理
12 创建用户:
12.1 create user ‘用户名’@’localhost’ identified by ‘密码’;
12.2 grant 权限列表 on . to ‘用户名’@’localhost’ identified by ‘密码’;