/* Get the average of the average low temperatures */ select avg(AvgLow) as AvgTemp from worldtemps; /* Get the number of different average low temperatures */ /* and group them by the average low temperature */ select AvgLow, count(AvgLow) from worldtemps group by AvgLow; /* Get the highest average low temperature */ select max(AvgLow) from worldtemps;