When analyzing sales data, which aggregate function would you use to find the total revenue across all transactions?

  • AVG(revenue)
  • MAX(revenue)
  • MIN(revenue)
  • SUM(revenue)
In this scenario, to find the total revenue across all transactions, you would use the SUM() aggregate function. This function calculates the sum of the values in the specified column, which is ideal for calculating total revenue.
Add your answer
Loading...

Leave a comment

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