<aside> 📚 Notes from: SQL Ultimate Course by Data With Baraa — PDF 02 (Part 1)
</aside>
A complete SQL statement is the full block of code you send to the database.
-- Retrieve Customers Data
SELECT
name,
LOWER(country)
FROM customers
WHERE country = 'Italy'
Text ignored by the engine — used to document your code.
Sections of a SQL statement that each perform a specific function.
Reserved words that have a special meaning in SQL.