You start with 2019. To return average contributions in 2019 (contributions_2019), you use the AVG function. What section of a SQL query will instruct the database to find this average and store it in the AvgLineTotal variable?

AVG(contributions_2019) = “AvgLineTotal”

AVG(“contributions_2019”) IN AvgLineTotal

AVG(“contributions_2019”) WHERE AvgLineTotal

AVG(contributions_2019) AS AvgLineTotal
Correct
To return average contributions in 2019, the correct portion of the SQL query is:
AVG(contributions_2019) AS AvgLineTotal