In a customer database, how would you use aggregate functions to determine the average age of all customers?

  • AVG(age)
  • MAX(age)
  • MIN(age)
  • SUM(age)
To determine the average age of all customers, you would use the AVG() aggregate function. This function calculates the average value of the specified column, providing the mean age of all customers in the database.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *