美文网首页
postgresql 表的列名,数据库表名

postgresql 表的列名,数据库表名

作者: 忘记_3a6a | 来源:发表于2019-11-16 10:35 被阅读0次
    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_%';
    

    相关文章

      网友评论

          本文标题:postgresql 表的列名,数据库表名

          本文链接:https://www.haomeiwen.com/subject/eytyictx.html