美文网首页
MySQL操作索引

MySQL操作索引

作者: 帮我的鸵鸟盖个章 | 来源:发表于2021-04-06 15:48 被阅读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;
    

    相关文章

      网友评论

          本文标题:MySQL操作索引

          本文链接:https://www.haomeiwen.com/subject/eioskltx.html