PostgreSQL的官方文档非常完整:https://www.postgresql.org/docs/9.6/static/index.html

设置环境变量

echo "export PATH=$PATH:/Library/PostgreSQL/9.6/bin/" >> ~/.profile
. ~/.profile

创建、删除数据库

$ createdb -U postgres test

$ dropdb -U postgres test

操作数据库

$ psql -U postgres test

查看数据库版本

test=# select * from version();

查看命令行帮助

test=# \h

退出psql

test=# \q

[ 编辑 | 历史 ]
最近由“jilili”在“2016-11-09 09:26:23”修改