1. 程式人生 > >PostgreSQL - 查詢表結構和索引資訊

PostgreSQL - 查詢表結構和索引資訊

前言

PostgreSQL的表一般都是建立在public這個schema下的,假如現在有個資料表t_student,可以用以下幾種方式來查詢表結構和索引資訊。

使用\d元命令查看錶欄位資訊和索引資訊

在cmd介面使用psql連線db後,輸入\d加上表名即可:

\d t_student

通過系統資料字典查詢表結構

select
col.table_schema,
col.table_name,
col.ordinal_position,
col.column_name,
col.data_type,
col.character_maximum_length,
col.numeric_precision,
col.numeric_scale,
col.is_nullable,
col.column_default,
des.description
from
information_schema.columns col left join pg_description des on
col.table_name::regclass = des.objoid
and col.ordinal_position = des.objsubid
where
table_schema = 'public'
and table_name = 't_student'
order by
ordinal_position;

或者簡單點:

select * from information_schema.columns
where table_schema='public' and table_name='t_student';

通過系統資料字典查詢索引資訊

select
A.SCHEMANAME,
A.TABLENAME,
A.INDEXNAME,
A.TABLESPACE,
A.INDEXDEF,
B.AMNAME,
C.INDEXRELID,
C.INDNATTS,
C.INDISUNIQUE,
C.INDISPRIMARY,
C.INDISCLUSTERED,
D.DESCRIPTION
from
PG_AM B left join PG_CLASS F on
B.OID = F.RELAM left join PG_STAT_ALL_INDEXES E on
F.OID = E.INDEXRELID left join PG_INDEX C on
E.INDEXRELID = C.INDEXRELID left outer join PG_DESCRIPTION D on
C.INDEXRELID = D.OBJOID,
PG_INDEXES A
where
A.SCHEMANAME = E.SCHEMANAME
and A.TABLENAME = E.RELNAME
and A.INDEXNAME = E.INDEXRELNAME
and E.SCHEMANAME = 'public'
and E.RELNAME = 't_student';

查詢所有的表名

select
n.nspname,
relname
from
pg_class c,
pg_namespace n
where
c.relnamespace = n.oid
and nspname = 'public'
and relkind = 'r'
order by
relname;

視覺化工具DBeaver

對於上述的sql語句只需要修改要查詢的table name,可以根據需要自行修改想要查詢的column。如果是通過DBeaver來連線資料庫,還可以直接在當前的資料庫例項下開啟schema裡的public選項,接著選中table,選中你想檢視的表,可以很直觀地看到該表的各種資訊:column、index等等。

參考連結