mysql unique key

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql unique key相关的知识,希望对你有一定的参考价值。

create table b1(id int,name char unique)这样name字段就唯一了

或者create table b1(id int,name char,unique(id),unique(name))这种写法也行

这两种就是单列唯一

create table b1(id int,name char,unique(id,name))

这样就是联合唯一了,就是数据里面的id,name字段两个合起来完全一样

以上是关于mysql unique key的主要内容,如果未能解决你的问题,请参考以下文章

关于mysql中unique的使用

Mysql中 unique列插入重复值该怎么解决呢

MySQL-UNIQUE

Mysql 如何查看一个表的unique key

mysql unique key

mysql中的unique