What does the following query do? SELECT dept_id, AVG(salary) FROM employees GROUP BY dept_id HAVING AVG(salary) > 60000 SQL FundamentalsMedium Try Now
Which aggregate function should you use to find the total revenue per product category? SQL FundamentalsMedium Try Now
What does the CASE expression return when no WHEN condition matches and no ELSE is provided? SQL FundamentalsMedium Try Now
What does index cardinality measure and why does it matter for query optimization? SQL Data AnalystMedium Try Now