MySQL操作索引
2021-04-06 本文已影响0人
帮我的鸵鸟盖个章
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;