• 技术文章 >数据库 >PostgreSQL

    postgresql怎么判断表是否存在

    silencementsilencement2020-01-15 11:27:26原创5583

    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和MySQL如何选择

    相关文章推荐

    • postgreSQL在CMD里怎么连接• postgresql 如何连接• postgresql速度快吗

    全部评论我要评论

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

  • 取消发布评论
  • 

    Python学习网