Hi,
I would like to extract data from a csv file that contains the column names in the first row.
Normally, if my data columns were 'name' and 'age', I would do:
EXTRACT
name string, age int
FROM "/filename.csv"
USING Extractors.Csv(skipFirstNRows:1)
However, what if I want to get the column names from the first row of the file, instead of hardcoding the columns 'name' and 'age'? Is there a way to do this in U-SQL?