Introduction to Databricks SQL
Kevin Barlow
Data Manager
COPY INTO my_table
FROM '/path/to/files'
FILEFORMAT = PARQUET
FORMAT_OPTIONS ('mergeSchema' = 'true')
COPY_OPTIONS ('mergeSchema' = 'true')
CREATE TABLE customers
AS SELECT *
FROM cloud_files(
"/path/to/files",
"csv")
Introduction to Databricks SQL