PostgreSQL:資料庫的選擇

Ryan_Bai發表於2020-11-30

資料庫的命令視窗

PostgreSQL 命令視窗中,我們可以命令提示符後面輸入 SQL 語句:

postgres=#

使用 **\l** 用於檢視已經存在的資料庫:

postgres=# \l
                             List of databases
   Name    |  Owner   | Encoding | Collate | Ctype |   Access privileges   
-----------+----------+----------+---------+-------+-----------------------
 postgres  | postgres | UTF8     | C       | C     | 
 testdb    | postgres | UTF8     | C       | C     | 
 template0 | postgres | UTF8     | C       | C     | =c/postgres          +
           |          |          |         |       | postgres=CTc/postgres
 template1 | postgres | UTF8     | C       | C     | =c/postgres          +
           |          |          |         |       | postgres=CTc/postgres
(4 rows)

接下來我們可以使用 **\c + 資料庫名** 來進入資料庫:

postgres=# \c testdb
You are now connected to database "testdb" as user "postgres".
testdb=#

系統命令列視窗

在系統的命令列檢視,我們可以在連線資料庫後面新增資料庫名來選擇資料庫:

$ psql -h localhost -p 5432 -U postgress testdb
Password for user postgress: ****
psql (11.3)
Type "help" for help.
You are now connected to database "testdb" as user "postgres".
testdb=#

現在登入到 PostgreSQL 的 testdb 內部準備執行命令。若想從資料庫退出,可以使用命令 \q


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31490526/viewspace-2738175/,如需轉載,請註明出處,否則將追究法律責任。

相關文章