postgresql如何判斷表是否存在

renke發表於2021-09-11

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學習網,大量的免費,歡迎線上學習!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/430/viewspace-2835059/,如需轉載,請註明出處,否則將追究法律責任。

相關文章