Introduction to Databricks SQL
Kevin Barlow
Data Manager
A tree consists of many different components, all of which make up the entire entity

In Databricks SQL, different components combine into a data warehouse solution

SELECT
orderdate AS Date,
orderpriority AS Priority
sum(totalprice) AS TotalPrice
FROM sfdc.sales.orders
GROUP BY
1, 2
ORDER BY
1, 2





Introduction to Databricks SQL