需求描述: 今天在做SQL的优化的时候,想要把mysql中某个表上的索引删除掉,突然忘记语法了,找到帮助,在此记录下 操作过程: 1.查看表上的索引 show index from ti_o_sms; 备注:通过以上的查询,TI_O_SMS_IDX是一个复合索引. 2.删除这个复合索引 drop index TI_O_SMS_idx on ti_o_sms; 备注:执行完删除语句之后,再次查询,表上的复合索引已经被删除了. 3.通过help命令查看删除索引的语法 mysql> help drop…
Messages表: mysql>create table Messages( ->message_id int auto_increment primary key, ->user_name varchar(50) not null, ->author_id int not null, ->body text, ->forum_id int not null); Forums表: mysql>create table Forums( ->forum_id…