数据库 SQL 提示
假设你已经启动了你的 PostgreSQL 客户端并且你已经登陆了下面的 SQL 提示符 -
您可以使用检查可用的数据库列表\l,即反斜杠 el 命令如下 -
postgres-# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+---------+-------+-----------------------
postgres | postgres | UTF8 | C | C |
template0 | postgres | UTF8 | C | C | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | C | C | =c/postgres +
| | | | | postgres=CTc/postgres
testdb | postgres | UTF8 | C | C |
(4 rows)
postgres-#
现在,键入以下命令以连接/选择所需的数据库;在这里,我们将连接到testdb数据库。
postgres=# \c testdb;
psql (9.2.4)
Type "help" for help.
You are now connected to database "testdb" as user "postgres".
testdb=#