【Gerrit】【Postgresql】psql数据库基本操作

1.命令行登录数据库:

psql -p 5432 -Upostgres -W

2.列出所有数据库

\l

【Gerrit】【Postgresql】psql数据库基本操作

3.切换数据库

\c dbname

4.列出当前数据库的所有表

\d

【Gerrit】【Postgresql】psql数据库基本操作
5.查看指定表的所有字段

\d  tablename

【Gerrit】【Postgresql】psql数据库基本操作
6.退出数据库

\q

7.数据库备份

pg_dump -h localhost -U postgres -p 5432 reviewdb|gzip > "`date +%Y%m%d%H%M%S`".db.gz
或
pg_dump --host hostname --port port --username username -t tablename -d dbname >/home/jihite/table.sql 

8.数据库恢复

psql -h 10.125.7.68 -p 5432 -d postgres -U postgres -W postgres -f 2.sql

9.命令导入sql数据文件

psql -h localhost  -d databaseName  -U username -f  filename

参开链接:https://www.cnblogs.com/kaituorensheng/p/4667160.html

【Gerrit】【Postgresql】psql数据库基本操作

上一篇:【转】Scala JDBC 查询和更新MySQL


下一篇:Orient数据库安装