Learn SQL — query databases and explore data like a pro! ⚡
SQL (Structured Query Language) is used to manage, query, and manipulate relational databases.
“SQL is how we talk to databases.”
Tables, columns, and SELECT queries:
-- Example table: Users
-- id | name | age
-- 1 | Dyl | 15
-- 2 | Alex | 17
SELECT name, age FROM Users;
SELECT name FROM Users
WHERE age > 16;
Type a SELECT query below. This is a **simulated runner** using a sample Users table.
Query results will appear here...
*Simulated results (real SQL requires a database)