RosettaCodeData/Task/CSV-data-manipulation/DuckDB/csv-data-manipulation-1.duckdb

6 lines
137 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
create or replace table csv as
from read_csv_auto('rc-csv-data-manipulation.csv');
# View the first row of the table:
from csv limit 1;