InterviewSolution
| 1. |
What Is Aggregate Functions? |
|
Answer» Aggregate functions perform a calculation on a set of values and RETURN a single value. Aggregate functions ignore NULL values except COUNT function. HAVING clause is used, along with GROUP BY, for FILTERING query using aggregate values. Aggregate functions perform a calculation on a set of values and return a single value. Aggregate functions ignore NULL values except COUNT function. HAVING clause is used, along with GROUP BY, for filtering query using aggregate values. |
|