Skip to content

postgres

postgres 是一个开源的对象-关系型数据库管理系统 (ORDBMS)。

Terminal window
psql -Upostgres
psql -h127.0.0.1 -p5432 -Upostgres -Wpasswd
## 查看数据库
\l
## 连接数据库
\c noah
## 查看有哪些表
noah=# \dt
# 设置时区
SET TIMEZONE='Asia/Singapore';