SQL Tutorial 0/85 lessons ~6 min read Lesson 26
Aggregate Functions
Aggregate functions collapse many rows into one summary value: COUNT, SUM, AVG, MIN, MAX.
Course progress0%
Focus
6 guided sections
Practice signal
Examples included
Career prep
Foundation builder
Introduction
Aggregate functions collapse many rows into one summary value: COUNT, SUM, AVG, MIN, MAX. They power every dashboard, KPI and report.
Understanding the topic
Core concepts to understand:
COUNT(*)counts rows;COUNT(col)counts non-null values.SUM, AVGignore NULLs.- Use with
GROUP BYto aggregate per group. - Filter aggregates with
HAVING. - Postgres adds
STRING_AGG, ARRAY_AGG, BOOL_OR.
Syntax reference
Visual workflow / architecture:
bash
SELECT country,count(*) AS users,sum(spend) AS revenue,avg(spend) AS avg_spendFROM usersGROUP BY countryHAVING count(*) > 100ORDER BY revenue DESC;
Real-world use
Every analytics dashboard, KPI tile, and BI chart is built on aggregates. Stripe Dashboard, Mixpanel, Amplitude — all SUM/COUNT/AVG over big tables.
Best practices
- Always know whether NULLs should be counted.
- Index group columns for fast GROUP BY.
- Pre-aggregate into reporting tables for hot dashboards.
Hands-on exercise
Interview preparation — practice these questions:
- Q1.
COUNT(*)vsCOUNT(col). - Q2. Does AVG include NULLs?
- Q3. Difference between WHERE and HAVING.
- Q4. STRING_AGG use case.
- Q5. How to handle nulls in SUM?
Ready to mark this lesson complete?Track your journey across the entire course.