首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

postgresql如何判断表是否存在

2024-07-16 来源:骅佗教育

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学习网,大量的免费,欢迎在线学习!

显示全文