🗄️ The SQL Universe 🗄️

Learn SQL — query databases and explore data like a pro! ⚡

💡 What Is SQL?

SQL (Structured Query Language) is used to manage, query, and manipulate relational databases.

“SQL is how we talk to databases.”

🧩 Basics

Tables, columns, and SELECT queries:


-- Example table: Users
-- id | name   | age
-- 1  | Dyl    | 15
-- 2  | Alex   | 17

SELECT name, age FROM Users;
  

🔎 Filtering Data


SELECT name FROM Users
WHERE age > 16;
  

🕹️ Try SQL Yourself

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)