CEC005-CEC41S4_SQL1_MANAPAO
CEC005-CEC41S4_SQL1_MANAPAO
Quiz Result
Wrong/Skipped
Right Answer
1. Which of the following aggregate functions would be used to find the highest value in a column?
Description : The MAX() function in SQL retrieves the maximum value from a specified column. It returns
the highest value within the selected dataset, allowing users to identify the maximum value in a column.
Question Reference From : Count, Sum, Min, Max and Avg Function
Page 1 of 2
2. All aggregate functions are _______________.
Description : Aggregate functions in SQL are deterministic, meaning they produce the same result each
time they are executed with the same input data. Given the same dataset, these functions consistently yield
the same output.
Your Answer : They provide an efficient way to perform calculations on large data sets.
Description : Aggregate functions in SQL enable efficient calculations on large datasets without needing to
retrieve individual rows or process data manually. They summarize data, offering insights and analysis
across datasets swiftly.
Question Reference From : Count, Sum, Min, Max and Avg Function
Your Answer : To perform calculations on multiple values and return a single result
Description : Aggregate functions in SQL, such as SUM(), AVG(), COUNT(), and others, are designed to
perform calculations on multiple rows or values within a column and return a consolidated single result,
often summarizing or aggregating data across groups or the entire dataset.
Description : A column reference in SQL represents a specific column's name or identifier within a table.
Page 2 of 2