PostgreSQL数据库psql的使用之一

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据库psql的使用之一前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
[postgres@rhel73 ~]$ psql -d test -------->>>使用psql连接进入test数据库
psql (9.6.0)
Type "help" for help.

test=# \c                         -------->>>查看当前psql是用哪个user连接的哪个数据库
You are now connected to database "test" as user "postgres".
test=# \q                         -------->>>退出psql
[postgres@rhel73 ~]$ psql -d testa
psql: FATAL:  database "testa" does not exist
[postgres@rhel73 ~]$ 
原文链接:https://www.f2er.com/postgresql/194077.html

猜你在找的Postgre SQL相关文章