国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

PostgreSQL查詢表以及字段備注

anonymoussf / 1567人閱讀

摘要:查詢所有表名稱以及字段含義表名名稱字段字段備注列類型查看所有表名查看表名和備注查看特定表名備注查看特定表名字段

查詢所有表名稱以及字段含義
select c.relname 表名,cast(obj_description(relfilenode,"pg_class") as varchar) 名稱,a.attname 字段,d.description 字段備注,concat_ws("",t.typname,SUBSTRING(format_type(a.atttypid,a.atttypmod) from "(.*)")) as 列類型 from pg_class c,pg_attribute a,pg_type t,pg_description d
where a.attnum>0 and a.attrelid=c.oid and a.atttypid=t.oid and d.objoid=a.attrelid and d.objsubid=a.attnum
and c.relname in (select tablename from pg_tables where schemaname="public" and position("_2" in tablename)=0) order by c.relname,a.attnum
查看所有表名
select tablename from pg_tables where schemaname="public" and position("_2" in tablename)=0;

select * from pg_tables;
查看表名和備注
select relname as tabname,cast(obj_description(relfilenode,"pg_class") as varchar) as comment from pg_class c
where relname in (select tablename from pg_tables where schemaname="public" and position("_2" in tablename)=0);

select * from pg_class;
查看特定表名備注
select relname as tabname,
cast(obj_description(relfilenode,"pg_class") as varchar) as comment from pg_class c 
where relname ="tbl_alarm";
查看特定表名字段
select a.attnum,a.attname,concat_ws("",t.typname,SUBSTRING(format_type(a.atttypid,a.atttypmod) from "(.*)")) as type,d.description from pg_class c,pg_attribute a,pg_type t,pg_description d
where c.relname="tbl_alarm" and a.attnum>0 and a.attrelid=c.oid and a.atttypid=t.oid and d.objoid=a.attrelid and d.objsubid=a.attnum;

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/39026.html

相關文章

  • PostgreSQL:遞歸查詢應用場景

    摘要:今天在壇子里有人提出了一個問題,問題是這樣的在以下指定表中中國遼寧山東沈陽大連濟南和平區沈河區現在給定一個號,想得到它完整的名字。遞歸往上找,直到為止。也就是最高層級時結束,求完整語句。 今天在壇子里有人提出了一個問題,問題是這樣的:在以下指定表中 id name fatherid1 中國 02 遼寧 13 山東 14 沈陽 25 大連 26 濟南 37 和平區 48 沈河區 4 現在...

    YJNldm 評論0 收藏0
  • 一個更快,數據類型支持更精準的 golang PostgreSQL 驅動

    摘要:常見類型直接兼容的數組類型。如的,對應的數據源格式,既支持鍵值對,又支持。書寫格式遵守官方規范。格式,支持前綴。其中用戶名端口主機名,在數據源中未指定時,有默認值。這能提高倍的執行速度為了發揮好此功能,需要最大可能地允許數據庫連接空閑。 用于golang database/sql 的PostgreSQL驅動 showImg(https://godoc.org/github.com/bl...

    Pluser 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<