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_%';
select * from information_schema.columns where table_schema='public' and table_name='表名称 ';
select tablename from pg_tables where schemaname='moore_core' and tablename like 'policy_%';
本文标题:postgresql 表的列名,数据库表名
本文链接:https://www.haomeiwen.com/subject/eytyictx.html
网友评论