Snowflake is a cloud data warehouse built around separating storage from compute, maintained by Snowflake Inc. It sits around #18 in real-world usage (roughly 4.1%) โ you can scale query power up and down independently of how much data you store, popular for large enterprise analytics teams.
Snowflake uses standard ANSI SQL with the addition of "virtual warehouses" โ independently-scalable compute clusters that read from the same underlying storage:
USE WAREHOUSE analytics_wh; -- pick which compute cluster runs this query
SELECT region, SUM(revenue) AS total_revenue
FROM sales
GROUP BY region
ORDER BY total_revenue DESC;
Snowflake is accessed entirely through its web console, CLI, or SDKs โ there's no local install, only a free trial account:
# Snowflake CLI (SnowSQL)
snowsql -a your_account -u your_username