品易云推流 关闭
文章详情页
文章 > Python常见问题 > 如何判断postgresql表是否存在

如何判断postgresql表是否存在

头像

silencement

2020-02-12 14:36:102782浏览 · 0收藏 · 0评论

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教程》。

关注

关注公众号,随时随地在线学习

本教程部分素材来源于网络,版权问题联系站长!

底部广告图