PostgreSQL:資料庫的選擇
資料庫的命令視窗
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- PostgreSQL資料庫多列複合索引的欄位順序選擇原理SQL資料庫索引
- 資料庫索引選擇策略資料庫索引
- 時間序列化資料庫選型?時序資料庫的選擇?資料庫
- 如何選擇合適的NoSQL資料庫SQL資料庫
- oracle資料庫的ACFS圖形介面不可選擇Oracle資料庫
- 如何為資料庫選擇最佳加密方法資料庫加密
- 如何選擇一款合適的圖資料庫?資料庫
- 根據開源資料庫選擇合適的工具資料庫
- 資料庫伺服器選擇看那些方面資料庫伺服器
- 微服務真的不挑資料庫嗎?如何選擇?微服務資料庫
- 如何選擇各種型別資料庫?- Raj型別資料庫
- 為什麼要選擇分散式資料庫?分散式資料庫
- MySQL資料庫索引選擇使用B+樹MySql資料庫索引
- 資料庫入門之RDS選擇原則資料庫
- 資料庫建庫時字符集和排序規則的選擇資料庫排序
- 4.2.1.6 選擇資料庫並設定 Redo Log 塊的大小資料庫
- 選擇 NoSQL 資料庫需要考慮的 10 個問題SQL資料庫
- Postgresql10資料庫之更改資料庫的名稱SQL資料庫
- PostgreSQL-資料庫命令SQL資料庫
- 資料庫_SQL-PostgreSQL資料庫SQL
- postgresql 資料庫基本管理SQL資料庫
- postgresql 資料庫基本操作SQL資料庫
- postgresql資料庫利用方式SQL資料庫
- 又一巨頭選擇將資料庫開源資料庫
- oracle sqldeveloper選擇性複製備份資料庫OracleSQLDeveloper資料庫
- 資料庫SQL Server 2016“功能選擇”詳細說明及精簡安裝選擇資料庫SQLServer
- 如何選擇合適的雲資料庫架構與規格資料庫架構
- 2.4.4 Step 3: 選擇資料庫管理員的身份驗證方法資料庫
- oracle Mysql PostgreSQL 資料庫的對比OracleMySql資料庫
- PostgreSQL:資料庫的建立與刪除SQL資料庫
- 使用C#選擇資料夾、開啟資料夾、選擇檔案C#
- Rust 連線 PostgreSQL 資料庫RustSQL資料庫
- 直播app原始碼,資料庫多資料來源自動選擇實現APP原始碼資料庫
- PostgreSQL 資料庫學習 - 0. 資料庫安裝SQL資料庫
- 爬蟲中資料清洗的選擇爬蟲
- 你選擇圖資料庫的原因只是因為它很火嗎?資料庫
- 【趙渝強老師】PostgreSQL的資料庫SQL資料庫
- PostgreSql資料庫的備份和恢復SQL資料庫