数据库一览
\l
连接数据库
psql -U postgres -d mydb
用户一览
\du
创建用户
create role testuser with createdb createrole login password 'testpwd';
用户一览
\du
创建数据库
create database mydb;
数据库一览
\l
CREATE DATABASE testdb OWNER testuser;
确认当前的schema
select current_schema;
更改数据库的用户
ALTER DATABASE testdb OWNER TO testuser;
退出
\q