How to Filter Records with the Aggregate Function AVG in SQL

Use the AVG function to filter records with an aggregate function in SQL. This function takes a single argument, which is the column you want to calculate the average of. For example, if you wanted to calculate the average of the age column of your database, you would use the following query:

SELECT AVG(age) FROM table_name;

Examples

Let's look at a few examples of how this function can be used. Suppose you have a table called users with the following data:

If you wanted to calculate the average age of the users in this table, you would use the following query:

SELECT AVG(age) FROM users;

This query would return the result 25, since the average age of the users in the table is 25.

Additional Info

The AVG function is supported by most major databases, including MySQL, PostgreSQL, and SQL Server. However, the syntax may vary slightly depending on the database you are using. For more information, check out the documentation for your particular database. 🤓

Want to build your own LLM Apps with AirOps👇👇