后浪云Python教程:如何判断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';
推荐学习《Python教程》。
版权声明:
作者:后浪云
链接:https://www.idc.net/help/181687/
文章版权归作者所有,未经允许请勿转载。
THE END