postgresql怎么判断表是否存在

2025年02月12日 postgresql Python51

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

本文链接:http://so.lmcjl.com/news/23006/

展开阅读全文