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

postgresql怎么判断表是否存在

2023-12-18 20:35课程教程文章 人已围观

postgresql判断一个表是否存在:

方法一:

select count(*) from pg_class where relname = 'tablename';

方法二:

select count(*) from information_schema.tables where table_schema='public' and table_type='BASE TABLE' and 
table_name='tablename';

推荐学习《python教程》。

课程教程:postgresql怎么判断表是否存在

上一篇:postgresql和MySQL如何选择

下一篇:没有了

站点信息

  • 文章统计篇文章