PostgreSQL 选择数据库

PostgreSQL 选择数据库

本章解释了访问数据库的各种方法。假设我们在上一章中已经创建了一个数据库。您可以使用以下任一方法选择数据库 –

  • 数据库SQL提示符
  • 操作系统命令提示符

数据库SQL提示符

假设您已经启动了PostgreSQL客户端,并且已经进入了以下SQL提示符 –

postgres=#

你可以使用以下代码: \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=#

操作系统命令提示符

您可以在登录数据库时,直接通过命令提示符选择您的数据库。下面是一个简单的示例:

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

你现在已经登录到 PostgreSQL 的 testdb 数据库,并且可以在 testdb 中执行你的命令。要退出数据库,你可以使用命令 \q。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程