SQL Fundamentals
Filtering & Sorting ResultsEasyMultiple Choice
1/5
MCQ — WHERE + ORDER BY

Description

You have a `products` table with columns: `id`, `name`, `price`, `category`, `created_at`. You want to find all products in the 'Electronics' category that cost more than $100, sorted by price descending. Which query is correct?

Requirements

01Filter by category AND price condition
02Sort results by price in descending order
03Use proper SQL syntax and clause ordering

Select Your Answer