您现在的位置是:课程教程文章
postgresql如何判断表是否存在
2023-12-18 20:47课程教程文章 人已围观
-
云贝教育 | 优化PostgreSQL Partial Writes(页裂
云贝教育 | 优化PostgreSQL Partial Writes(页裂... -
云贝教育 | PostgreSQL国产分布式数据库SQ
云贝教育 | PostgreSQL国产分布式数据库SQ... -
腾讯云数据库PostgreSQL概述
腾讯云数据库PostgreSQL概述【适用对象】 所有人,腾讯云数据库PostgreSQL用户 【课程大纲】 一、PostgreSQL简... -
云贝教育 | PostgreSQL CA基础课,打好基础,
云贝教育 | PostgreSQL CA基础课,打好基础,购买后,需要课件的小伙伴请添加学院老师微信: 陈老师19941464235/高老师yunb...
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如何判断表是否存在下一篇:没有了