摘要:查詢所有表名稱以及字段含義表名名稱字段字段備注列類型查看所有表名查看表名和備注查看特定表名備注查看特定表名字段
查詢所有表名稱以及字段含義
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
摘要:今天在壇子里有人提出了一個問題,問題是這樣的在以下指定表中中國遼寧山東沈陽大連濟南和平區沈河區現在給定一個號,想得到它完整的名字。遞歸往上找,直到為止。也就是最高層級時結束,求完整語句。 今天在壇子里有人提出了一個問題,問題是這樣的:在以下指定表中 id name fatherid1 中國 02 遼寧 13 山東 14 沈陽 25 大連 26 濟南 37 和平區 48 沈河區 4 現在...
摘要:常見類型直接兼容的數組類型。如的,對應的數據源格式,既支持鍵值對,又支持。書寫格式遵守官方規范。格式,支持前綴。其中用戶名端口主機名,在數據源中未指定時,有默認值。這能提高倍的執行速度為了發揮好此功能,需要最大可能地允許數據庫連接空閑。 用于golang database/sql 的PostgreSQL驅動 showImg(https://godoc.org/github.com/bl...
閱讀 996·2023-04-25 14:45
閱讀 2772·2021-09-30 09:59
閱讀 3114·2021-09-22 15:48
閱讀 2425·2019-08-30 15:55
閱讀 3467·2019-08-30 15:44
閱讀 535·2019-08-29 14:07
閱讀 3412·2019-08-26 13:45
閱讀 536·2019-08-26 11:31