是否可以运行如下命令:
bq extract <source_table> <destination_uris>
并使用没有csv头的标志导出?类似于这里提到的API标志,但不使用API-只是通过bq提取…
使用:
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.