hoony's web study

728x90
반응형

PostgreSQL 은 사용하는 방법이 좀 특이해서 이렇게 Blogging을 합니다.

https://www.techonthenet.com/postgresql/primary_keys.php

 

PostgreSQL: Primary Keys

PostgreSQL: Primary Keys This PostgreSQL tutorial explains how to create, drop, disable, and enable a primary key in PostgreSQL with syntax and examples. What is a primary key in PostgreSQL? In PostgreSQL, a primary key is a single field or combination of

www.techonthenet.com

 

방법은 아래와 같습니다.

ALTER TABLE table_name
  ADD CONSTRAINT [ constraint_name ]
    PRIMARY KEY (index_col1, index_col2, ... index_col_n)

툴로해도 불편해서 이 방법이 훨씬 쉽게 느껴지네요. 

728x90

'DBMS > Postgres' 카테고리의 다른 글

postgres Sequence 생성하기  (0) 2021.11.29
PostgreSQL 날짜 포맷 함수  (0) 2021.11.19
unique index 생성  (0) 2021.11.18
column comment 추가하는 방법  (0) 2021.11.18
Postgres table comment 추가하는 방법  (0) 2021.11.18

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading