Show query result column types (PostgreSQL)

后端 未结 3 1253
生来不讨喜
生来不讨喜 2020-12-14 06:30

Is there a way to easily get the column types of a query result? I read the psql documentation, but I don\'t think it supports that. Ideally, I\'d be able to get something

3条回答
  •  孤街浪徒
    2020-12-14 07:00

    It is definitely possible with \gdesc command(psql 11):

    \gdesc

    Shows the description (that is, the column names and data types) of the result of the current query buffer. The query is not actually executed; however, if it contains some type of syntax error, that error will be reported in the normal way.

    If the current query buffer is empty, the most recently sent query is described instead.

    For example:

    $ SELECT * FROM pg_database \gdesc
    
        COLUMN     |   TYPE    
    ---------------+-----------
     datname       | name
     datdba        | oid
     encoding      | INTEGER
     datcollate    | name
     datctype      | name
     datistemplate | BOOLEAN
     datallowconn  | BOOLEAN
     datconnlimit  | INTEGER
     datlastsysoid | oid
     datfrozenxid  | xid
     datminmxid    | xid
     dattablespace | oid
     datacl        | aclitem[]
    

提交回复
热议问题