postgresql查询是否存在某些表
yang
2020-04-06 10:36:245431浏览 · 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';
推荐:PostgreSQL教程
关注公众号,随时随地在线学习