PostgreSQL 选择数据库
Posted 瀚高PG实验室
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL 选择数据库相关的知识,希望对你有一定的参考价值。
PostgreSQL 选择数据库
数据库的命令窗口
PostgreSQL 命令窗口中,我们可以命令提示符后面输入 SQL 语句:
postgres=#
使用 \\l 用于查看已经存在的数据库:
postgres=# \\l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+---------+-------+-----------------------
Postgres | postgres | UTF8 | C | C |
hgdb | 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 hgdb
You are now connected to database "hgdb" as user "postgres".
hgdb=#
系统命令行窗口
在系统的命令行查看,我么可以在连接数据库后面添加数据库名来选择数据库:
$ psql -h localhost -p 5432 -U postgres -d hgdb
Password for user postgress: ****
psql (10.0)
Type "help" for help.
You are now connected to database "hgdb" as user "postgres".
hgdb=#
以上是关于PostgreSQL 选择数据库的主要内容,如果未能解决你的问题,请参考以下文章
PostgreSQL连接python,postgresql在python 连接,创建表,创建表内容,插入操作,选择操作,更新操作,删除操作。