Project 5: Team Members Name List
SQL Architect
Builds on these lessons
Query Task
Objective
Your very first successful connection to a real database is usually tested with the simplest possible query — confirming the connection works before anything more complex.
You're given a team_members table with columns id, name, and role.
Task: write a query that returns only the name column, for every row.
query.sql
SELECT name FROM team_members;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results