postgresql 表的列名,数据库表名
2019-11-16 本文已影响0人
忘记_3a6a
postgresql 查询某一个表中的所有字段,也就是查询所有的列名
select * from information_schema.columns where table_schema='public' and table_name='表名称 ';
postgresql 查询数据库表名
select tablename from pg_tables where schemaname='moore_core' and tablename like 'policy_%';