美文网首页
pgsql查询表信息、列名

pgsql查询表信息、列名

作者: witty_drip | 来源:发表于2019-11-26 16:03 被阅读0次

    得到所有表信息

    select * from information_schema.columns 
    where table_schema='basisdata' and table_name<>'pg_stat_statements';
    

    得到所有表的列名

    select column_name from information_schema.columns 
    where table_schema='basisdata' and table_name<>'pg_stat_statements';
    

    得到表"day_app_derivate_cnt"的列名

    select column_name from information_schema.columns 
    where table_schema='basisdata' and table_name='day_app_derivate_cnt';
    

    相关文章

      网友评论

          本文标题:pgsql查询表信息、列名

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