Informatics Practices

What are aggregate functions in SQL? Name any two.

SQL Joins & Grouping

3 Likes

Answer

Aggregate functions in SQL work with data from multiple rows at a time and return a single aggregated value.

Examples of aggregate functions include SUM(), COUNT().

Answered By

3 Likes


Related Questions