Filtering
4 / 14
EasyOutput prediction

WHERE with AND

Given this table (employees):

idnamedeptsalary
1AliceSales70000
2BobSales95000
3CarolEng85000

What does this query return?

SELECT name FROM employees WHERE dept = 'Sales' AND salary > 80000;

← → arrow keys to navigate

Sign in to save your progress.