0
点赞
收藏
分享

微信扫一扫

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


创建unique索引

alter table test add unique index (`key`); 

删除key键unique索引

alter table test drop index `key`; 


举报

相关推荐

0 条评论