0

我有一个数据库,上面有几个表(包括一些数据)和函数。我从命令行界面创建了这些表和函数。

我的问题是:有什么方法可以让我的数据库查询返回,从而以可读的格式再次创建相同的表/函数。

PostgreSQL 版本:9.1.9

4

1 回答 1

2
pg_dump --schema-only my_database > my_database.sql

http://www.postgresql.org/docs/current/static/app-pgdump.html

于 2013-07-22T00:41:37.847 回答