1. 제약조건 추가.


ALTER TABLE cities ADD CONSTRAINT name PRIMARY KEY(name);

ALTER TABLE weather ADD CONSTRAINT city FOREIGN KEY(city) REFERENCES cities(name);



2. 제약조건 삭제.


ALTER TABLE weather DROP CONSTRAINT city;

ALTER TABLE cities DROP CONSTRAINT name;

반응형

'Programming > Databse' 카테고리의 다른 글

[PostgreSql] 상속(Inheritance)  (0) 2017.06.15
[PostgreSql] 트랜잭션(Transaction)  (0) 2017.06.15
[PostgreSql] 뷰(View)  (0) 2017.06.15
[PostgreSql] 기본 쿼리  (0) 2017.06.15
[PostgreSql] 유저 및 데이터베이스 생성  (0) 2017.06.15

+ Recent posts