postgre常用命令 介绍常用命令 1234567891011121314# 登录psql -U postgres# 查询库postgres=# \l# 切换库postgres=# \c test# 查询所有表postgres=# \dt# 创建库postgres=# create database test# 删除库postgres=# drop database test# 删除表postgres=# drop table tablename 备份恢复 1234# 备份pg_dump -h localhost -U postgres databasename > databasename.bak# 恢复psql -h localhost -U postgres -d databasename < databasename.bak 数据库 postgre 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处! nginx location斜杆区别 上一篇 k8s证书续签 下一篇