KnowledgeBoat Logo
|

Informatics Practices

What are aggregate functions in SQL? Name any two.

SQL Joins & Grouping

2 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

2 Likes


Related Questions