⌘+k ctrl+k
1.1.3 (stable)
Search Shortcut cmd + k | ctrl + k
JSON Export

要将表中的数据导出到JSON文件,请使用COPY语句:

COPY tbl TO 'output.json';

查询结果也可以直接导出到JSON文件:

COPY (SELECT * FROM tbl) TO 'output.json';

JSON 导出默认写入 JSON 行。可以使用 ARRAY 选项来写入 JSON 数组。

COPY tbl TO 'output.json' (ARRAY);

For additional options, see the COPY statement documentation.