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 |
|