5 lines
137 B
Text
5 lines
137 B
Text
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;
|