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個資料表department
及employee
。
沒有留言:
張貼留言