AdSense

網頁

2021/12/12

PostgreSQL 顯示所有的資料表 show all tables

PostgreSQL顯示資料庫全部資料表的方式如下。


psql命令列輸入\dt可列出目前資料庫下的所有的資料表。

postgres=> \dt
         List of relations
 Schema |   Name     | Type  | Owner
--------+------------+-------+-------
 public | department | table | user
 public | employee   | table | user
(2 row)

上面顯示目前資料庫public schema有2個資料表departmentemployee


沒有留言:

AdSense