Project 7: Menu Items Query
SQL Architect
Builds on these lessons
Query Task
Objective
SQL has four basic commands for working with data: SELECT (read), INSERT (create), UPDATE (modify), and DELETE (remove). You'll use all four across this track — starting with SELECT.
You're given a menu_items table with columns id, name, and price.
Task: write a query that returns every column, for every row, in the menu_items table.
query.sql
SELECT * FROM menu_items;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results