ClickHouse/docs/zh/sql-reference/statements/select/into-outfile.md
mikepop7 ad62e42229
Documentation improve: Translate [select] section into Chinese to improve readability (#13814)
* translate [select] section into Chinese to improve readability

* trigger ci

Co-authored-by: mikepop7 <>
Co-authored-by: Ivan Blinkov <github@blinkov.ru>
2020-08-17 23:28:11 +03:00

714 B
Raw Blame History

toc_title
INTO OUTFILE

INTO OUTFILE 子句

添加 INTO OUTFILE filename 子句其中filename是字符串 SELECT query 将其输出重定向到客户端上的指定文件。

实现细节

  • 此功能是在可用 命令行客户端clickhouse-local. 因此通过 HTTP接口 发送查询将会失败。
  • 如果具有相同文件名的文件已经存在,则查询将失败。
  • 默认值 输出格式TabSeparated (就像在命令行客户端批处理模式中一样)。