欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pg提取序列号 博客分类: postgresql  

程序员文章站 2024-02-25 08:50:34
...
select table_catalog , table_schema , table_name , column_name , column_default  , regexp_matches(column_default , '^nextval[\(]([^\)]+)::regclass[\)]$') 

from information_schema.columns where column_default like 'nextval%' 

 mark