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.
14 lines
381 B
SQL
14 lines
381 B
SQL
-- 자동차 과태료 대상 ID 시퀀스
|
|
-- 테이블: seq_car_ffnlg_trgt_incmp_id
|
|
-- 컬럼: CAR_FFNLG_TRGT_INCMP_ID (varchar(20))
|
|
|
|
-- 시퀀스 삭제 (존재하는 경우)
|
|
DROP SEQUENCE IF EXISTS seq_car_ffnlg_trgt_incmp_id;
|
|
|
|
-- 시퀀스 생성
|
|
CREATE SEQUENCE seq_car_ffnlg_trgt_incmp_id
|
|
START WITH 1000
|
|
INCREMENT BY 1
|
|
MINVALUE 1
|
|
MAXVALUE 99999999999999999;
|