常用sql记录一、达梦数据库-- 创建一个序列
create sequence test.seq_xxx_id
start with 1
increment by 1
nocache nocycle;
-- 创建一个id自增触发器
cre
2026-06-03