I have numerous different .csv files structured like so -
"Company", "column2", "column3"
"ABC Corp", "John Doe", "212,345"
"DBE Ltd", "Victor Smith", "234,345"
I understand how to write these CSV files to a table, however I want to actually write these to a new table but I may not know the columns so I need it to dynamically scan the .csv file to get the column names from the first row for the CREATE TABLE portion.