데이터베이스 Study/PostgreSQL
postgresql mysql의 auto_increment와 같은 자동 증가
SKYSTORY4U
2013. 3. 6. 11:12
create table test(
testId serial
)
serial 타입으로 하면 mysql의 auto_increment 값과 같이 자동 증가 된다.