← Back to Games

🗃️ SQL Query Builder

Learn to write SELECT queries step by step

🗃️ Learn SQL SELECT

Build SQL queries to retrieve data from databases.
Master SELECT, FROM, WHERE, AND, and OR!

📖 SQL Syntax Guide

SELECT * FROM Students

Select ALL columns from the Students table

SELECT Name, Age FROM Students

Select only Name and Age columns

SELECT * FROM Students WHERE Age > 16

Numbers don't need quotes

SELECT * FROM Students WHERE House = "Red"

Strings need quotes (single or double)

SELECT * FROM Students WHERE Age > 15 AND House = "Blue"

AND = both conditions must be true

✓ Correct!

+10 points
🏆

SQL Master!

You've completed all 10 challenges!

Score: 0