You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
276 B
SQL

-- 이행정보 ID 시퀀스
CREATE SEQUENCE seq_implt_info_id
START WITH 1
INCREMENT BY 1
MINVALUE 1
MAXVALUE 9999999999
CYCLE;
-- 이행 대상자 정보 ID 시퀀스
CREATE SEQUENCE seq_implt_trpr_info_id
START WITH 1
INCREMENT BY 1
MINVALUE 1
MAXVALUE 9999999999
CYCLE;