Project 6: Testimonials Selector
SQL Architect
Builds on these lessons
Query Task
Objective
The fundamentals: a database holds tables, a table holds rows, and each row is divided into named columns. A query names which columns you want and which table to pull them from.
You're given a testimonials table with columns id, author, quote, and rating.
Task: write a query that returns only the author and quote columns, for every row.
query.sql
SELECT author, quote FROM testimonials;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results