postgresql 常用语句

前端之家收集整理的这篇文章主要介绍了postgresql 常用语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

-- 查看pg数据库用户列表
/du

-- 数据库列表,所属者以及编码
/l

-- 数据库表或者视图等列表

/d

-- 表或者视图的结构
/d 视图名
/d 表名

-- 连接到该用户名下的数据库
/c 数据库用户名

-- 查看pg某配置值
show xxx;

-- 设置某配置
set xxx = xxx;

-- 建立smallfish用户,密码为tt1234
CREATE USER smallfish WITH PASSWORD 'tt1234';

-- 建立数据库smdb,所有者为smallfish
CREATE DATABASE smdb OWNER smallfish;

-- 从当前数据库转到smallfish用户smdb库中
/c smdb smallfish -- 会提示输入smallfish密码

-- 从shell登录登录用户名为smallfish,主机是localhost,数据库是smdb
$ psql -U smallfish -hlocalhost smdb 持续更新中...

原文链接:https://www.f2er.com/postgresql/197208.html

猜你在找的Postgre SQL相关文章