0
0
SQLquery~20 mins

WHERE with IN list in SQL - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
IN List Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
query_result
intermediate
2:00remaining
Output of WHERE with IN list filtering
Given the table Employees with columns id, name, and department, what is the output of this query?
SELECT name FROM Employees WHERE department IN ('Sales', 'Marketing');
SQL
CREATE TABLE Employees (id INT, name VARCHAR(50), department VARCHAR(50));
INSERT INTO Employees VALUES
(1, 'Alice', 'Sales'),
(2, 'Bob', 'Engineering'),
(3, 'Charlie', 'Marketing'),
(4, 'Diana', 'HR');
AAlice, Charlie
BBob, Diana
CAlice, Bob, Charlie
DCharlie, Diana
Attempts:
2 left
💡 Hint
Look for employees whose department is either 'Sales' or 'Marketing'.
📝 Syntax
intermediate
2:00remaining
Identify the syntax error in WHERE with IN list
Which option contains a syntax error in the use of the IN list in the WHERE clause?
SQL
SELECT * FROM Products WHERE category IN ('Books', 'Electronics');
ASELECT * FROM Products WHERE category IN ('Books' 'Electronics');
BSELECT * FROM Products WHERE category IN 'Books', 'Electronics';
CSELECT * FROM Products WHERE category IN ('Books', 'Electronics');
DSELECT * FROM Products WHERE category IN ('Books', 'Electronics',);
Attempts:
2 left
💡 Hint
Check the parentheses and commas around the list values.
optimization
advanced
2:00remaining
Optimizing WHERE with IN list for large datasets
You have a large table Orders with millions of rows. You want to filter orders where status is in a list of 1000 possible values. Which approach is most efficient?
AUse WHERE status IN (list of 1000 values) directly in the query.
BFilter the Orders table in application code after selecting all rows.
CUse multiple OR conditions like WHERE status = val1 OR status = val2 ... for all 1000 values.
DCreate a temporary table with the 1000 values and join it with Orders on status.
Attempts:
2 left
💡 Hint
Consider how databases optimize joins versus large IN lists.
🧠 Conceptual
advanced
2:00remaining
Understanding NULL behavior with WHERE IN list
Consider a table Students with a column grade that can be NULL. What is the result of this query?
SELECT * FROM Students WHERE grade IN (NULL, 'A', 'B');
AReturns all rows regardless of grade.
BReturns rows where grade is 'A', 'B', or NULL.
CReturns rows where grade is 'A' or 'B' only, NULLs excluded.
DReturns no rows because NULL in IN list causes error.
Attempts:
2 left
💡 Hint
Remember how NULL comparisons behave in SQL.
🔧 Debug
expert
2:00remaining
Debugging unexpected results with WHERE IN list
A developer runs this query:
SELECT * FROM Inventory WHERE product_code IN ('P001', 'P002', 'P003');

But the result is empty even though these product codes exist. Which option explains the most likely cause?
AThe product_code column has trailing spaces, so values don't match the list exactly.
BThe IN list syntax is incorrect and causes a syntax error.
CThe product_code column is numeric but the list uses strings.
DThe table Inventory is empty.
Attempts:
2 left
💡 Hint
Think about string matching and whitespace in SQL.