一、数据库
1 登录数据库
# psql -U postgres
# psql -U postgres -h localhost
# psql -U postgres -h localhost -d postgres
2 查看数据库
# \l
3 删除数据库
postgres=# drop database test;
4 如果数据库名称中包含符号-,则用双引号包括数据库名称
postgres=# drop database "test-study";
5 查看当前数据库
postgres# select current_database();
6 切换数据库
postgres# \c db
7 退出数据库
postgres# \q
二、数据表
1 显示当前数据库中的所有表
# \d
2 显示指定表结构
postgres# \d tableName
4 xx
三、用户
1 查看所有用户
\du
2 查看当前用户
select user;
select current_user;
3 修改用户密码
alter user lining with password '123456';
4 添加用户
create user asan with password '123456';
5 给用户添加权限文章来源:https://www.toymoban.com/news/detail-733020.html
alter user asan with SUPERUSER;
6 删除用户文章来源地址https://www.toymoban.com/news/detail-733020.html
drop user asan;
到了这里,关于PostgreSQL常用命令的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!