12. Summarizing Data

In this chapter, you learn what the SQL aggregate functions are and how to use them to summarize table data.

Using Aggregate Functions

It is often necessary to summarize data without actually retrieving it all, and MariaDB provides special functions for this purpose. Using these functions, MariaDB queries are often used to retrieve data for analysis and reporting purposes. Examples of this type of retrieval are

• Determining the number of rows in a table (or the number of rows that meet some condition or contain a specific value)

• Obtaining the sum of a group of rows in a table

• Finding the highest, lowest, and average values in a table column (either for all rows or for specific rows)

In each of these examples, you want ...

Get MariaDB Crash Course now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.