美文网首页
mysql 创建和删除唯一索引(unique key)

mysql 创建和删除唯一索引(unique key)

作者: willeny | 来源:发表于2018-01-26 13:52 被阅读0次

    把数据库:test(数据库)->test(数据表)->key(字段)设置unique 索引为例:

    alter table test add unique index (`key`);  //创建unique索引

    alter table test drop index `key`; //删除key键 unique索引

    相关文章

      网友评论

          本文标题:mysql 创建和删除唯一索引(unique key)

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