Project 1: Projects Table Query
SQL Architect
Builds on these lessons
Query Task
Objective
SQL (Structured Query Language) is how you ask a relational database questions and tell it what to store. Every query targets one or more tables — a grid of rows and columns, much like a spreadsheet.
You're given a projects table with columns id, title, and year.
Task: write a query that returns every column, for every row, in the projects table.
query.sql
SELECT * FROM projects;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results
← Previous
Next →