AVG()
The AVG() function is used to find the mean, or average, value of a column. For example, if you want to find the average of the attendance, we can run this query.
xxxxxxxxxxSELECT MAX(Attendance) FROM Class;OUTPUT
Results will appear here.
The AVG() function is used to find the mean, or average, value of a column. For example, if you want to find the average of the attendance, we can run this query.
xxxxxxxxxxSELECT MAX(Attendance) FROM Class;