About 199,000 results
Open links in new tab
  1. AGGREGATE function - Microsoft Support

    Returns an aggregate in a list or database. The AGGREGATE function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.

  2. SQL Aggregate Functions - W3Schools

    SQL Aggregate Functions An aggregate function is a function that performs a calculation on a set of values, and returns a single value. Aggregate functions are often used with the GROUP BY …

  3. SQL Aggregate Functions

    This tutorial introduces you to the most commonly used SQL aggregate functions including AVG, COUNT, MAX, MIN and SUM functions.

  4. SQL Aggregate functions - GeeksforGeeks

    Aug 26, 2025 · SQL Aggregate Functions are used to perform calculations on a set of rows and return a single value. These functions are particularly useful when we need to summarize, …

  5. Aggregate function - Wikipedia

    Formally, an aggregate function takes as input a set, a multiset (bag), or a list from some input domain I and outputs an element of an output domain O. [1] The input and output domains …

  6. GROUP BY and Aggregate Functions: A Complete Overview

    Apr 18, 2024 · SQL’s aggregate functions are used when you want to do computations on data and return a single value. The most common aggregate functions in SQL are: COUNT () – …

  7. SQL Aggregate Functions Guide: COUNT, SUM, AVG, MAX, MIN

    Jan 1, 2025 · Master SQL aggregate functions that summarize and analyze your data: COUNT, SUM, AVG, MAX, and MIN. This comprehensive tutorial features 15+ hands-on examples with …

  8. SQL Aggregate Functions - SQL Tutorial

    These functions allow you to calculate the minimum, maximum, average, sum, and count of values in a column or a set of columns in a table. The most commonly used SQL aggregate …

  9. What Are Aggregate Functions in SQL? Learn with Examples

    Aug 7, 2025 · Learn SQL aggregation functions like SUM, COUNT, and AVG with simple examples. Understand how they work and generate them visually in DbSchema.

  10. SQL Aggregate Functions: Explore 5 Types of Functions

    Jul 31, 2025 · What is an Aggregate Function in SQL? An aggregate function in SQL returns one value after calculating multiple column values. We often use aggregate functions with the …