UNIQUE约束
UNIQUE 约束唯一标识数据库表中的每条记录。
UNIQUE 和 PRIMARY KEY 约束均为列或列集合提供了唯一性的保证。
PRIMARY KEY 约束拥有自动定义的 UNIQUE 约束。
请注意,每个表可以有多个 UNIQUE 约束,但是每个表只能有一个 PRIMARY KEY 约束。
MS Server / Oracle
CREATE TABLE users
(
user_id int NOT NULL UNIQUE,
username varchar(50) NOT NULL,
city varchar(255),
)
MYSQL UNIQUE 约束
MySQL创建unique稍有不同,注意区别
下面的 SQL 在 "users" 表创建时在 "username" 列上创建 UNIQUE 约束:
CREATE TABLE users
(
user_id int NOT NULL,
username varchar(50) NOT NULL,
city varchar(255),
UNIQUE (user_id)
)
UNIQUE 约束命名
CREATE TABLE users_account
(
user_id int NOT NULL,
username varchar(50) NOT NULL,
account varchar(255),
bank varchar(255),
CONSTRAINT user_account UNIQUE (username, account)
)
更改UNIQUE 约束
当表已被创建时,如需在 "username" 列创建 UNIQUE 约束,请使用下面的 SQL:
ALTER TABLE users
ADD UNIQUE (username)
添加约束并命名约束
ALTER TABLE users_account
ADD CONSTRAINT user_account UNIQUE (username, account)
撤销 UNIQUE 约束
如需撤销 UNIQUE 约束,请使用下面的 SQL:
SQL Server / Oracle / MS Access
ALTER TABLE users_account
DROP CONSTRAINT user_account
MySQL
ALTER TABLE users_account
DROP INDEX user_account
讨论区