- postgres=# \d 查看表\视图\序列
- postgres=# \d name 查看名称为 name 的表\视图\序列
- postgres=# \db 查看表空间
- postgres=# \df 查看触发函数
- postgres=# \sf name 查看名称为 name 的函数定义
- postgres=# \sv name 查看名称为 name 的视图定义
- postgres=# \dn 查看所有的 schema
- 更多快捷键名称请登录后自行敲入 postgres=# \?查看
- psql -h hostname -U username -d dbname 登录 ip 为 hostname 的数据库名称为 dbname 的数据库,用户名为 username,密码敲完命令后自行输入
- postgres=# copy tablename to 'filepath'; --较少的单表数据导出
- postgres=# copy tablename from 'filepath'; --较少的单表数据导入
copy 的更多用法请参考官方文档:https://www.postgresql.org/docs/10/static/sql-copy.html - pg_dump -h hostname -d dbname -U username >'fllename'; --敲入命令输入密码后把数据库名为 dbname 的数据 + 结构整表导出
- pg_dump -h hostname -d dbname -U username <'fllename'; --敲入命令输入密码后把数据库名为 dbname 的数据 + 结构整表导入,导入前请提前创建好数据库名为 dbname 的数据库,且用户名为 username 对这个数据库有管理权限。
pg_dump 的更多用户请参考官方文档:https://www.postgresql.org/docs/10/static/app-pgdump.html
-
PostgreSQL
22 引用 • 22 回帖
PostgreSQL 是一款功能强大的企业级数据库系统,在 BSD 开源许可证下发布。
-
数据库
340 引用 • 708 回帖
据说 99% 的性能瓶颈都在数据库。
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于