• 技术文章 >数据库 >PostgreSQL

    postgresql如何判断表是否存在

    爱喝马黛茶的安东尼爱喝马黛茶的安东尼2019-12-26 09:56:55原创3210

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

    专题推荐:postgresql 判断 表
    上一篇:postgresql保留字有哪些 下一篇:postgresql 判断是否含某个字符

    相关文章推荐

    • postgresql如何判断字段是否为空

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网