Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learn SQL using MySQL in One Day and Learn It Well

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781836205678
Pages 121 pages
Edition 1st Edition
Languages
Author (1):
Jamie Chan Jamie Chan
Profile icon Jamie Chan

Aggregate Functions

 

Besides the functions mentioned above, MySQL also comes with a large number of pre-written aggregate functions.

 

An aggregate function is a function that performs calculation on a set of values and returns the result of the calculation as a single value.

 

We can use some of these built-in aggregate functions to perform various calculations on the data in our tables.

 

Let’s look at some of these functions and apply them on our employees table.

 

The calculations below are based on the employees table found in Appendix A.

 

The commonly used aggregate functions in MySQL include:

 

COUNT()

 

The COUNT() function returns the number of the rows in the table.

 

If we pass in * to the function, it returns the total number of rows in the table.

 

If we pass in a column name instead, it returns the number of non NULL values in that column (NULL values are ignored).

 

If we want to remove...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}