Is it possible to consider the second row of a .csv
file as the headers and skip the first row in S3 Select?
- Example:
The structure of my file is as follows:
A B C
a b c d e f
1 2 3 4 5 6
Now I want skip
A B C
And query on
a b c d e f
Is this possible by any chance?