Question
Easy

Which of the following set of operations is a valid set of aggregate operations in SQL ?

1
COUNT, MAX, AVG, SUM
2
MAX, AVG, SUM, SELECT
3
UNION, COUNT, MIN, DESC
4
AVG, MIN, MAX, ASC
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Database Management System (DBMS) & SQL
Topic: SQL
Correct Answer
Option A
Explanation

The correct option is (1): Aggregate functions in Structured Query Language (SQL) are a class of functions specifically designed to perform a calculation on a set of rows and return a single, summarized value. The set COUNT, MAX, AVG, SUM represents the core, foundational aggregate functions universally supported in SQL. COUNT() is used to count the number of rows or non-NULL values in a column. MAX() and its counterpart MIN()…Read More