码迷,mamicode.com
首页 > 数据库 > 详细

[PostgreSQL] Ensure Uniqueness in Postgres

时间:2017-05-31 21:32:49      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:lease   rect   char   lte   unique   code   name   error   str   

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

标签:lease   rect   char   lte   unique   code   name   error   str   

原文地址:http://www.cnblogs.com/Answer1215/p/6925919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!