psql是PostgreSQL的交互式客户端工具,通过该工具来管理和操作PostgreSQL数据库。

语法格式:psql [参数] [数据库名称[用户名称]]

常用参数:

参考实例

连接到数据库template1,并列出服务器上所有的数据库:

[[email protected] ~]# psql template1

进入数据库postgres:

psql -U postgres

进入数据库查看:

psql -U postgres
\l
07-21 11:45