Could I please confirm StarRocks doesn't support o...
# questions-and-troubleshooting
c
Could I please confirm StarRocks doesn't support outputting headers in CSV files? That is, there is no way for StarRocks to add headers to the results of the query
Copy code
INSERT INTO FILES(
  'path' = 'file:///home/ubuntu/csvfile/', 
  'format' = 'csv', 
  'csv.column_separator' = ',', 
  'csv.row_delimitor' = '\n'
)
SELECT * FROM sales_records;