• 技术文章 >数据库 >PostgreSQL

    postgresql查询是否存在某些表

    yangyang2020-04-06 10:36:24原创4616

    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';

    推荐:PostgreSQL教程

    专题推荐:postgresql
    上一篇:postgresql无法删除数据表如何解决 下一篇:postgresql常见错误

    相关文章推荐

    • postgresql如何备份数据库• postgresql判断是否为数字的方法• postgresql查看数据库里有哪些表的方法

    全部评论我要评论

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

  • 取消发布评论
  • 

    Python学习网