mydb=# \dt 关联列表 架构模式 | 名称 | 型别 | 拥有者 ----------+----------+--------+---------- public | cities | 资料表 | postgres public | products | 资料表 | postgres public | weather | 资料表 | postgres (3 行记录)
mydb=# \d weather 资料表 "public.weather" 栏位 | 型别 | 修饰词 ---------+-----------------------+-------- city | character varying(80) | temp_lo | integer | temp_hi | integer | prcp | real | date | date |
|