创建新表新索引
CREATE TABLE 表名(数据名 类型,INDEX 索引名称(属性))
创建存在表的索引
CREATE INDEX 索引名称 ON 表名(属性)
修改索引
ALTER TABLE 表名 ADD INDEX 索引名称(属性)
删除索引
DROP INDEX 索引名称 ON 表名