Postgresql 表结构、列名相关信息查询

查询数据库拥有的表数量

sql 复制代码
select count(*)
from pg_class c join pg_namespace n on relnamespace = n.oid where relkind = 'r' and n.nspname = 'public' ;

查询所有表名及注释

sql 复制代码
-- 方法一
select relname, reltuples as rw,obj_description(c.oid)
from pg_class c join pg_namespace n on relnamespace = n.oid where relkind = 'r' and n.nspname = 'public';

-- 方法二 加条件 and relchecks=0是过滤掉分表
SELECT relname as tabname,
    cast(obj_description(relfilenode,'pg_class') as varchar) as comment 
FROM pg_class c 
WHERE relchecks=0 
AND relkind = 'r' 
AND relname not like 'pg_%' 
AND relname not like 'sql_%'
order by relname;

查询字段名、类型、注释、是否为空

sql 复制代码
SELECT 
    col_description(a.attrelid,a.attnum) as comment,
    format_type(a.atttypid,a.atttypmod) as type,
    a.attname as name, 
    a.attnotnull as notnull   
FROM pg_class as c,pg_attribute as a 
where c.relname = '表名' 
and a.attrelid = c.oid 
and a.attnum>0;

查询表字段(详细版):列名、备注、类型、是否为空、长度、是否为主键

sql 复制代码
select a.attname as colname,	col_description(a.attrelid,a.attnum) as remarks,t.typname,a.attnotnull as notnull ,
(case when atttypmod-4>0 then atttypmod-4 else 0 end) len,
(case  when (select count(*) from pg_constraint where conrelid = a.attrelid and conkey[1]=attnum and contype='p')>0  
	then 'Y' else 'N' end) as primarykey
from pg_attribute a left join pg_class c on a.attrelid = c.oid
left join pg_type t on a.atttypid = t.oid
where	a.attnum >= 0 and c.relname = '表名'
order by c.relname desc,	a.attnum asc

查询表和表字段(表名和列的详细信息的融合)

sql 复制代码
select ROW_NUMBER() over(ORDER bY c.relname ,	a.attnum asc ) AS	 num,
 c.relname as 英文表名,
 de.description  as 中文表名,
a.attname as 英文字段名称,	
col_description(a.attrelid,a.attnum) as 中文字段名称,
t.typname 字段类型,
(case when atttypmod-4>0 then atttypmod-4 else 0 end) 字段长度,
'0' 字段小数位数,
(case when a.attnotnull='t' THEN	'是' ELSE	'否' END )  字段是否非空,
(case  when (select count(*) from pg_constraint where conrelid = a.attrelid 
and conkey[1]=attnum and contype='p')>0  	then '是' else '否' end)  字段是否主键,
'该字段为'||col_description(a.attrelid,a.attnum) as 字段描述
from pg_attribute a 
left join pg_class c on a.attrelid = c.oid
left join pg_type t on a.atttypid = t.oid
left outer join pg_namespace pn on c.relnamespace = pn.oid
left join ( select pd.*
    from pg_description pd
    where 1=1
        and pd.objsubid = 0 ) de on c.oid = de.objoid 
where	a.attnum >= 0 
and relchecks=0 
and relkind in ('r','v','m','f','p')
and pn.nspname not in ('pg_catalog','information_schema') 
        and pn.nspname not like 'pg_toast%'
order by c.relname ,	a.attnum asc;
相关推荐
随风飘的云1 天前
MySQL的慢查询优化解决思路
数据库
IvorySQL1 天前
PostgreSQL 技术日报 (3月7日)|生态更新与内核性能讨论
数据库·postgresql·开源
赵渝强老师1 天前
【赵渝强老师】金仓数据库的数据文件
数据库·国产数据库·kingbase·金仓数据库
stark张宇1 天前
构建第一个AI聊天机器人:Flask+DeepSeek+Postgres实战
人工智能·postgresql·flask
随逸1771 天前
《Milvus向量数据库从入门到实战,手把手搭建语义检索系统》
数据库
神秘的猪头1 天前
🚀 React 开发者进阶:RAG 核心——手把手带你玩转 Milvus 向量数据库
数据库·后端·llm
IvorySQL2 天前
PostgreSQL 技术日报 (3月6日)|为什么 Ctrl-C 在 psql 里让人不安?
数据库·postgresql·开源
NineData2 天前
数据库管理工具NineData,一年进化成为数万+开发者的首选数据库工具?
运维·数据结构·数据库
IvorySQL2 天前
PostgreSQL 技术日报 (3月5日)|规划器控制力升级,内核能力再进阶
数据库·postgresql·开源