Learn SQL

SQL (Structured Query Language) is used to manage and manipulate databases. Whether you're building websites, apps, or data-driven systems, SQL is essential for interacting with stored data.

What You’ll Learn

Beginner SQL Resources

Try It Yourself

Write a query to find all customers who live in "New York" from a table named customers.


SELECT * 
FROM customers
WHERE city = 'New York';