KnowledgeBoat Logo

Computer Science

What are aggregate functions? What is their use? Give some examples.

SQL Joins & Grouping

1 Like

Answer

Aggregate functions in SQL work with data from multiple rows at a time and return a single aggregated value. They are used to perform calculations across multiple rows and return a summary result for that group.

Examples of aggregate functions include SUM(), COUNT(), MAX(), MIN(), AVG() etc.

Answered By

2 Likes


Related Questions