postgreSQL 创建自增序列
CREATE SEQUENCE t_active_security_punishment_report_id_seq
START WITH 1
INCREMENT by 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
nextval('t_active_security_punishment_report_id_seq'::regclass)
CREATE SEQUENCE t_active_security_punishment_report_id_seq
START WITH 1
INCREMENT by 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
nextval('t_active_security_punishment_report_id_seq'::regclass)