以postgres用户执行psql连接数据库:
alter user postgres with encrypted password 'PG@sql123';
\password
查看PG的版本信息:
select version();
查看PG的系统表:
select * from pg_tables;