赞
踩
查询序列及更新当前值
-- 查询序列select * from sequence where name ='XXX'; -- 更新当前值update sequence set current_value ='1' where name ='XXX';