首页 > 代码库 > [PostgreSQL] Ensure Uniqueness in Postgres
[PostgreSQL] Ensure Uniqueness in Postgres
Let’s say we have a bank. Our bank wants to give each account for each user a unique name, for instance, “Personal” or “Checking.” How can we make sure each account has a unique name for each user?
Add unique constraint when create a new table:
CREATE TABLE directors ( id SERIAL PRIMARY KEY, name VARCHAR(100) UNIQUE NOT NULL )
Change existing table, modify one field to be unique:
ALTER TABLE directors ADD CONSTRAINT directors_name_unique UNIQUE(name)
So now if we trying to insert the duplicate rows it will report error:
INSERT INTO directors (name) VALUES (‘Quintin Tarantino‘), (‘Quintin Tarantino‘) ;
Sometime, the unique constraint can be a combination of mulit fields:
ALTER TABLE movies ADD CONSTRAINT unique_title_and_release UNIQUE(title, release-date)
[PostgreSQL] Ensure Uniqueness in Postgres
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。