DB에서 자동 증가를 생성하려고한다.
Postgresql , Oracle 은 Sequence 의 독릭 오브젝트를 사용하고
MySQL은 컬럼에 AUTO_INCREMENT 를 사용한다.
sequence 만들기
create sequence seq_tablename;
drop sequence seq_tablename;
CREATE TABLE gtcktest.tablename (
id int8 DEFAULT nextval('seq_tablename'),
dominant float8 NULL,
contribution float8 NULL,
topic text NULL,
docid int8 NULL,
CONSTRAINT topictab_pk PRIMARY KEY (id)
);
반응형
'프로그래밍 언어 > DB' 카테고리의 다른 글
[PostgreSQL] if the message is not readable, please check database logs and/or host, port, dbname, user, password, pg_hba.conf (0) | 2021.12.22 |
---|---|
postgresql sequence 시퀀스 만들기 (0) | 2021.12.07 |
postgresql 최대 동시 접속자 수를 초과했습니다 해결 (2) | 2021.11.18 |
[postgresql] dt did not find any relations (0) | 2021.11.15 |
postgresql 테이블 데이터 모두 삭제 (truncate) (0) | 2021.11.15 |