Amelio Vazquez-Reina Asked: 2014-02-06 13:22:18 +0800 CST2014-02-06 13:22:18 +0800 CST 2014-02-06 13:22:18 +0800 CST 将 \ 命令的输出保存到磁盘 772 当我尝试运行以下命令时: my_db> \copy \dt *. to /home/john/list.txt 我得到一个错误: \copy: parse error at "*" 为什么?如何将输出保存到磁盘? psql 1 个回答 Voted Best Answer a_horse_with_no_name 2014-02-06T14:14:27+08:002014-02-06T14:14:27+08:00 使用\o手册中记录的命令: http://www.postgresql.org/docs/current/static/app-psql.html 具体来说: > \o <path_to_the_file_where_you_want_the_output> > [your command] > \o 最后一条语句将 的输出切换psql回stdout。
使用
\o
手册中记录的命令:http://www.postgresql.org/docs/current/static/app-psql.html
具体来说:
最后一条语句将 的输出切换
psql
回stdout
。