We'll send a 6-digit OTP to verify
All Questions
Q1: Sales Summary by Region with ROLLUP
Q2: Aggregation and Filter
Q3: Hierarchical Query Using CONNECT BY
Q4: SELECT Statement
Q5: Pattern Match
Q6: GROUP BY with HAVING Clause
Q7: Handling Nulls with COALESCE
Q8: GROUP BY Clause
Q9: UPDATE Query
Q10: Use of HAVING
Q11: Subquery in DELETE Statement
Q12: JOIN Query
Q13: ORDER BY
Q14: Subquery with Aggregate Function in WHERE Clause
Q15: NULL Comparison in SQL
Q16: Column Alias
Q17: Aggregate Function Usage
Q18: DENSE_RANK() function in SQL
Q19: LIMIT Usage
Q20: Date Filter
Q21: Nested SELECT
Q22: NOT IN Clause
Q23: TOP Clause (T-SQL)
Q24: JOIN Types
Q25: MIN/MAX Usage
Q26: DELETE Query
Q27: BETWEEN Query
Q28: JOIN With Condition
Q29: Aggregation Query
Q30: GROUP BY with ORDER BY Column Index
Ques 1 of 30
MCQ Question 1 of 30
Time left
Question 1: Sales Summary by Region with ROLLUP
Given the table Sales, what will the following query return?SELECT Region, SUM(Sales) FROM Sales WHERE Sales > 1000 GROUP BY Region WITH ROLLUP;