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;
相关推荐
2301_793102497 分钟前
Linux——MySql数据库
linux·数据库
喵叔哟9 分钟前
第4章:Cypher查询语言基础
数据库
刘 大 望13 分钟前
数据库-联合查询(内连接外连接),子查询,合并查询
java·数据库·sql·mysql
从零开始学习人工智能41 分钟前
Doris 数据库深度解析:架构、原理与实战应用
数据库·架构
LiRuiJie1 小时前
深入剖析MySQL锁机制,多事务并发场景锁竞争
数据库·mysql
2501_915374351 小时前
Faiss向量数据库全面解析:从原理到实战
数据库·faiss
睡觉待开机2 小时前
0. MySQL在Centos 7环境安装
数据库·mysql·centos
2501_915374352 小时前
Faiss vs Milvus 深度对比:向量数据库技术选型指南
数据库·milvus·faiss
傻啦嘿哟2 小时前
Python 数据分析与可视化实战:从数据清洗到图表呈现
大数据·数据库·人工智能
cookqq3 小时前
mongodb源码分析session异步接受asyncSourceMessage()客户端流变Message对象
数据库·sql·mongodb·nosql