MySQL操作索引
增加普通索引
ALTER TABLE call_record ADD INDEX index_phone_no (phone_no);
增加唯一索引
ALTER TABLE call_record ADD INDEX index_phone_no (phone_no);
删除索引
DROP INDEX index_business_type_no ON call_record;
MySQL操作索引
增加普通索引
ALTER TABLE call_record ADD INDEX index_phone_no (phone_no);
增加唯一索引
ALTER TABLE call_record ADD INDEX index_phone_no (phone_no);
删除索引
DROP INDEX index_business_type_no ON call_record;
本文标题:MySQL操作索引
本文链接:https://www.haomeiwen.com/subject/eioskltx.html
网友评论