Which SQL clause is required when using an aggregate function to also display non-aggregated columns? SQL FundamentalsMedium Try Now
What does the NULLIF(expr1, expr2) function return when expr1 equals expr2? SQL FundamentalsMedium Try Now
What is the output of: SELECT 5 / 2 in most SQL databases using integer division? SQL FundamentalsMedium Try Now
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