I have my data in CSV format in the below form:
Id -> tinyint
Name -> String
  Id  Name
  1   Alex
  2   Sam
When I export the CSV file to S3 and create an Athena table, the data transform into the following format.
 Id   Name
 1    "Alex"
 2    "Sam"
How do I get rid of the double quotes while creating the table?
Any help is appreciated.