现在位置:首页 > 数据库 > PostgreSQL > PostgreSQL选择数据库

PostgreSQL选择数据库

来源:网络整理    由 易百 更新版本    浏览:人次

本章介绍访问数据库的各种方法。假设在我们的前面的章节中,我们已经创建了一个数据库。现在可以使用下面的方法选择数据库: yiibai.com

  • 数据库SQL提示符

    yiibai.com

  • OS(操作系统)命令提示符 www.yiibai.com

数据库SQL提示

假设已经有PostgreSQL客户端打开,已经登陆下面的SQL提示:

www.yiibai.com

postgres=# www.yiibai.com 

你可以检查可用的数据库列表,利用\l即反斜线el命令如下: www.yiibai.com

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-#  www.yiibai.com 

现在键入下面的命令连接/选择所需的数据库,在这里我们将连接到testdb数据库:

www.yiibai.com

postgres=# \c testdb;
psql (9.2.4)
Type "help" for help.
You are now connected to database "testdb" as user "postgres".
testdb=#  www.yiibai.com 

OS命令提示符

可以选择数据库从命令提示符,当登录到数据库。下面是一个简单的例子: yiibai.com

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=#  www.yiibai.com 

现在登录到PostgreSQL的testdb内部准备执行命令。若想从数据库退出,可以使用命令\q

yiibai.com

本站文章除注明转载外,均为本站原创或编译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动,传播学习教程;
转载请注明:文章转载自:易百教程 [http://www.yiibai.com]
本文标题:PostgreSQL选择数据库
转载请保留原文链接:http://www.yiibai.com/html/postgresql/2013/080437.html
上一篇:PostgreSQL创建数据库      下一篇:PostgreSQL删除数据库