PostgreSQL选择数据库
本章介绍访问数据库的各种方法。假设在我们的前面的章节中,我们已经创建了一个数据库。现在可以使用下面的方法选择数据库:
-
数据库SQL提示符
-
OS(操作系统)命令提示符
数据库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=#
OS命令提示符
可以选择数据库从命令提示符,当登录到数据库。下面是一个简单的例子:
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内部准备执行命令。若想从数据库退出,可以使用命令\q
本站文章除注明转载外,均为本站原创或编译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:PostgreSQL选择数据库
本文地址:http://www.codeinn.net/postgresql/928.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:PostgreSQL选择数据库
本文地址:http://www.codeinn.net/postgresql/928.html