| --sql查询列信息
 postgres=# \d t_tbs
                Table "public.t_tbs"
   Column  | Type | Collation | Nullable | Default 
 ----------+------+-----------+----------+---------
  oid      | oid  |           |          | 
  spcname  | name |           |          | 
  spcowner | oid  |           |          | 
 Tablespace: "tbs_xifenfei"
 postgres=# select attrelid,attname,atttypid,attstattarget,attlen,attnum from pg_attribute where attrelid=16408;
  attrelid | attname  | atttypid | attstattarget | attlen | attnum 
 ----------+----------+----------+---------------+--------+--------
     16408 | tableoid |       26 |             0 |      4 |     -6
     16408 | cmax     |       29 |             0 |      4 |     -5
     16408 | xmax     |       28 |             0 |      4 |     -4
     16408 | cmin     |       29 |             0 |      4 |     -3
     16408 | xmin     |       28 |             0 |      4 |     -2
     16408 | ctid     |       27 |             0 |      6 |     -1
     16408 | oid      |       26 |            -1 |      4 |      1
     16408 | spcname  |       19 |            -1 |     64 |      2
     16408 | spcowner |       26 |            -1 |      4 |      3
 (9 rows)
 --dump 内容(截取部分)
  Item  11 -- Length:  144  Offset: 1424 (0x0590)  Flags: NORMAL
 COPY: 16408     oid     26      -1      4       1
  Item  12 -- Length:  144  Offset: 1280 (0x0500)  Flags: NORMAL
 COPY: 16408     spcname 19      -1      64      2
  Item  13 -- Length:  144  Offset: 1136 (0x0470)  Flags: NORMAL
 COPY: 16408     spcowner        26      -1      4       3
  Item  14 -- Length:  144  Offset:  992 (0x03e0)  Flags: NORMAL
 COPY: 16408     ctid    27      0       6       -1
  Item  15 -- Length:  144  Offset:  848 (0x0350)  Flags: NORMAL
 COPY: 16408     xmin    28      0       4       -2
  Item  16 -- Length:  144  Offset:  704 (0x02c0)  Flags: NORMAL
 COPY: 16408     cmin    29      0       4       -3
  Item  17 -- Length:  144  Offset:  560 (0x0230)  Flags: NORMAL
 COPY: 16408     xmax    28      0       4       -4
  Item  18 -- Length:  144  Offset:  416 (0x01a0)  Flags: NORMAL
 COPY: 16408     cmax    29      0       4       -5
 |