首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
安装 PostgreSQL
PostgreSQL 语法
PostgreSQL 创建数据库
PostgreSQL 选择数据库
PostgreSQL 删除数据库
PostgreSQL 创建数据表
PostgreSQL 删除数据表
PostgreSQL 模式
PostgreSQL INSERT INTO 语句
PostgreSQL SELECT 语句
PostgreSQL 表达式
PostgreSQL WHERE 子句
PostgreSQL AND & OR 运算符
PostgreSQL UPDATE 语句
PostgreSQL DELETE 语句
PostgreSQL LIKE 子句
PostgreSQL LIMIT 子句
PostgreSQL ORDER BY 语句
PostgreSQL GROUP BY 语句
PostgreSQL WITH 子句
PostgreSQL HAVING 子句
PostgreSQL DISTINCT 关键字
PostgreSQL 连接(JOIN)
当前位置:
首页>>
技术小册>>
PostgreSQL入门教程
小册名称:PostgreSQL入门教程
数据库的命令窗口 PostgreSQL 命令窗口中,我们可以命令提示符后面输入 SQL 语句: ``` postgres=# ``` 使用 \l 用于查看已经存在的数据库: ``` postgres=# \l ``` ``` List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+---------+-------+----------------------- postgres | postgres | UTF8 | C | C | maxiaokedb | 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 maxiaokedb You are now connected to database "maxiaokedb" as user "postgres". maxiaokedb=# ``` 系统命令行窗口 在系统的命令行查看,我么可以在连接数据库后面添加数据库名来选择数据库: ``` $ psql -h localhost -p 5432 -U postgres maxiaokedb Password for user postgres: **** psql (11.3) Type "help" for help. You are now connected to database "maxiaokedb" as user "postgres". maxiaokedb=# ```
上一篇:
PostgreSQL 创建数据库
下一篇:
PostgreSQL 删除数据库
该分类下的相关小册推荐:
SQL基础教程(上)
SQL基础教程(中)
高性能的Postgres SQL
SQL基础教程(下)