Skip to content

Snowflake SQL Basics

metodiev edited this page Jan 24, 2026 · 1 revision

Snowflake SQL Basics

Learn the core SQL commands in Snowflake: SELECT, INSERT, UPDATE, DELETE.

Topics

  • SELECT Queries
  • Filtering and Sorting
  • Aggregations (COUNT, SUM, AVG)
  • Sample Queries

Example:

SELECT first_name, last_name
FROM customers
WHERE country = 'USA'
ORDER BY last_name;

Clone this wiki locally