Project 3: Recipe Columns Selector
SQL Architect
Builds on these lessons
Query Task
Objective
DBMS tools — a GUI like pgAdmin or MySQL Workbench, or a plain command-line client — are how you'd normally run a query like this one against a real database and see the results in a table.
You're given a recipes table with columns id, name, and servings.
Task: write a query that returns only the id and name columns, for every row.
query.sql
SELECT id, name FROM recipes;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results