使用 header? 将 CSV 加载到 Redshift 中

Load CSV into Redshift, with header?

是否可以使用 header 将 CSV 加载到 Redshift 中?我看到了 CSV 的文档,但它没有提到 header。理想情况下,它可以使用 header 来确定要加载的列。

使用COPY命令时使用IGNOREHEADER 1选项:

IGNOREHEADER [ AS ] number_rows

Treats the specified number_rows as a file header and does not load them. Use IGNOREHEADER to skip file headers in all files in a parallel load.

参见:Amazon Redshift COPY command documentation