W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
上一章節(jié)我們講了如何創(chuàng)建數(shù)據(jù)庫,接下來我們來討論如何去選擇我們創(chuàng)建的數(shù)據(jù)庫。
PostgreSQL 命令窗口中,我們可以命令提示符后面輸入 SQL 語句:
postgres=#
使用 \l 用于查看已經(jīng)存在的數(shù)據(jù)庫:
postgres=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+---------+-------+----------------------- postgres | postgres | UTF8 | C | C | w3cschooldb | 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 + 數(shù)據(jù)庫名 來進入數(shù)據(jù)庫:
postgres=# \c w3cschooldb You are now connected to database "w3cschooldb" as user "postgres". w3cschooldb=#
在系統(tǒng)的命令行查看,我么可以在連接數(shù)據(jù)庫后面添加數(shù)據(jù)庫名來選擇數(shù)據(jù)庫:
$ 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 "w3cschooldb" as user "postgres". w3cschooldb=#
pgAdmin 工具更簡單了,直接點擊數(shù)據(jù)庫選擇就好了,還可以查看一些數(shù)據(jù)庫額外的信息:
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: