0
In SQL problem "Appartments" it requires calling 'AVG' to calculate average for a particular column
However when I test the code it returns an error : " aggregate functions are not allowed" Can someone help me find the issue ?
2 Respuestas
+ 2
select avg(score) as avg
from sam_grades
where semester=1
-- Keep learning & happy coding :D
+ 1
Oh thx SoloProg