postgresql判断一个表是否存在

前端之家收集整理的这篇文章主要介绍了postgresql判断一个表是否存在前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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';
原文链接:https://www.f2er.com/postgresql/193815.html

猜你在找的Postgre SQL相关文章