Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2026 05:55 AM
create table demo.cases_test as
select * from csv.`/Volumes/workspace/demo/raw/cases_test.csv`
WITH (
header = "true",
inferSchema "true"
);
The above query also works for csv file and below works for json,parquet files respectively
%sql
drop table if exists demo.constructors;
create table demo.constructors as
select * from json.`/Volumes/workspace/demo/raw/constructors.json`
%sql
drop table if exists demo.constructors;
create table demo.constructors as
select * from parquet.`/Volumes/workspace/demo/raw/constructors.parquet`
Once @szymon_dybczak thanks again, really appreciate
AT