Attempt the question, check the explanation, and continue with similar questions to build confidence before exams.
SELECT EmpID, SUM(SalePrice) FROM SALE GROUP BY EmpID HAVING SUM(SalePrice) > 500000;
SELECT EmpID, SUM(SalePrice) FROM SALE HAVING SUM(SalePrice) > 500000;
SELECT SUM(SalePrice) FROM SALE GROUP BY EmpID HAVING EmpID = 'E001';
SELECT EmpID, COUNT(*) FROM SALE WHERE Salary > 50000 GROUP BY EmpID;
Video Explanation
Watch Video Solution
Login to get access
Continue with nearby questions to strengthen the same chapter concept while you still have the context fresh in mind.