I'm not able to find any data sources to answer your question. Please specify if you are looking for syntax examples or configuration options for handling space-delimited CSV files in DuckDB. If this doesn't help, please reach out to the DuckDB & MotherDuck support team for further assistance.
💡Hint: Mention RunLLM in the thread for followups.
Joseph H. is the following answer better?
To parse a space-delimited CSV file using DuckDB’s read_csv_auto function, specify the delimiter as a space (' ’) using the delim parameter. Here’s an example:
SELECT * FROM read_csv_auto('your_file.csv', delim=' ');