成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

PostgreSQL查詢表以及字段備注

anonymoussf / 1576人閱讀

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

查詢所有表名稱以及字段含義
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;

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

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

相關文章

  • PostgreSQL:遞歸查詢應用場景

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

    YJNldm 評論0 收藏0
  • 一個更快,數(shù)據(jù)類型支持更精準的 golang PostgreSQL 驅(qū)動

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

    Pluser 評論0 收藏0

發(fā)表評論

0條評論

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