Project 11: FAQ Multi-Condition Filter
SQL Architect
Builds on these lessons
Query Task
Objective
AND requires every condition to be true for a row to match; OR requires just one. Combine them with comparison operators to build a filter with more than one requirement.
You're given a faqs table with columns id, question, category, and is_published.
Task: write a query that returns every column, for rows where category is 'shipping' AND is_published is true.
query.sql
SELECT * FROM faqs WHERE category = 'shipping' AND is_published = true;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results