如何备份一些带有数据的表和一些仅模式的表 PostgreSQL
我想转储数据库。
我有三个表:
table1 表2 table3
从 table1 我想要模式加数据。
从表2和表3我只想要模式。
我该怎么做?
I want to dump a database.
I have three tables:
table1
table2
table3
From table1 i want the schema plus data.
From table2 and table3 i just want the schema.
How do i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要从几个表中获取数据:
这就是我想要的:)
谢谢大家!
To get data from just a few tables:
This is what i wanted :)
Thanks all!
使用pg_dump,它同时具有仅模式和模式+数据输出。
Use pg_dump, which has both schema-only and schema + data output.