--普通索引create index 索引名 on 表名 (列名); --单列create index I索引名 on 表名 (列名[, 列名, ....]); --可以有多个列--唯一索引create unique 索引名 on 表名 (列名); --单列create unique I索引名 on 表名 (列名[, 列名, ....]); --可以有多个列