Copyright © 2022-2024 aizws.net · 网站版本: v1.2.6·内部版本: v1.23.3·
页面加载耗时 0.00 毫秒·物理内存 61.9MB ·虚拟内存 1299.8MB
欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
上一章节我们讲了如何创建数据库,接下来我们来讨论如何去选择我们创建的数据库。
PostgreSQL 命令窗口中,我们可以命令提示符后面输入 SQL 语句:
postgres=#
使用 \l 用于查看已经存在的数据库:
postgres=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+---------+-------+----------------------- postgres | postgres | UTF8 | C | C | aizwsdb | 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 aizwsdb You are now connected to database "aizwsdb" as user "postgres". aizwsdb=#
在系统的命令行查看,我么可以在连接数据库后面添加数据库名来选择数据库:
$ psql -h localhost -p 5432 -U postgress aizwsdb Password for user postgress: **** psql (11.3) Type "help" for help. You are now connected to database "aizwsdb" as user "postgres". aizwsdb=#
pgAdmin 工具更简单了,直接点击数据库选择就好了,还可以查看一些数据库额外的信息:
PostgreSQL 删除数据库可以用以下三种方式:1、使用 DROP DATABASE SQL 语句来删除。2、使用 dropdb 命令来删除。3、使用 pgAdmin 工具。注意:删除数据库要谨慎操作, ...