您现在的位置是:课程教程文章

PostgreSQL如何判断字段是否存在

2023-12-18 19:23课程教程文章 人已围观

PostgreSQL如何判断字段是否存在

方法一:

select count(*) from information_schema.columns WHERE table_schema = 'table_schema'
     and table_name = 'table_name' and column_name = 'column_name';

方法二:

select * from information_schema.columns WHERE table_schema = 'table_schema' 
    and table_name = 'table_name' and column_name = 'column_name';

补充:

判断表是否存在:

select count (*) from information_schema.tables WHERE table_schema = 'table_schema' 
    and table_name = 'table_name';
    
select * from information_schema.tables WHERE table_schema = 'table_schema' 
    and table_name = 'table_name';

推荐:postgresql教程

课程教程:PostgreSQL如何判断字段是否存在

上一篇:PostgreSQL怎么延时执行

下一篇:没有了

站点信息

  • 文章统计篇文章