mysql 表增加多个索引_mysql给同一个表添加多个索引的测试

分别给xc表添加ind_name和ind_status的索引:

root@test 11:44:13>create index ind_name on xc(name);

Query OK, 6815744 rows affected (1 min 43.75 sec)

Records: 6815744  Duplicates: 0  Warnings: 0

root@test 01:53:31>create index ind_status on xc(status);

Query OK, 6815744 rows affected (2 min 4.26 sec)

Records: 6815744  Duplicates: 0  Warnings: 0

root@test 11:15:47>alter table xc add index ind_name(name);

Query OK, 6815744 rows affected (1 min 44.40 sec)

Records: 6815744  Duplicates: 0  Warnings: 0

root@test 11:20:01>alter table xc add index ind_status(status);

Query OK, 6815744 rows affected (2 min 11.50 sec)

Records: 6815744  Duplicates: 0  Warnings: 0

共:3 min 55.90 sec

将两个ddl语句合并起来的添加或删除索引:

root@test 11:32:18>alter table xc add index ind_name(name),add index ind_status(status)

你可能感兴趣的:(mysql,表增加多个索引)