任何人都可以告诉我该怎么做?
(我知道这可能是一个愚蠢的问题,但我正在尝试学习如何使用 postgresql 的命令行)
~$ psql mybase
psql (9.1.3)
Type "help" for help.
接着
mybase=# \dt
List of relations
Schema | Name | Type | Owner
--------+---------------------+-------+----------
public | xxxxxx | table | postgres
public | xxxxxxx | table | postgres
public | xxxxxxxxxxx | table | postgres
public | xxxxxxxx | table | postgres
public | xxxxxxxxx | table | postgres
public | xxxxxxxxx | table | postgres
public | xxxxxxxxxxxxxxxx | table | postgres
public | xxxxxxxxxxxx | table | postgres
public | xxxxxxxxxxxxxxxx | table | postgres
public | xxxxxxxxxx | table | postgres
public | xxxxxxxxx | table | postgres
public | xxxxxxxxxxxxxxxx | table | postgres
public | xxxxxxxx | table | postgres
只想要一张桌子然后做一个恢复=D谢谢
如果要创建包含数据的文本文件,请使用COPY命令(或在客户端创建输出文件的
psql
命令\copy
,而不是像COPY
命令那样在服务器上创建输出文件的命令)。如果要创建 SQL 语句,请使用pg_dump