是否可以运行如下命令:
bq extract <source_table> <destination_uris>
并使用标志导出而不使用csv标头?与提到的here API标志类似,但不使用API - 仅通过bq extract...
答案 0 :(得分:2)
使用:
bq extract --noprint_header <source_table> <destination_uris>
您可以从以下输出中找到此选项:
bq help extract
[...]
--[no]print_header: Whether to print header rows for formats that have headers.
Prints headers by default.