Answer the question
In order to leave comments, you need to log in
How to display the number of records whose values are above the average?
Task: the number of students whose score is above the average for the faculty
SELECT Count(*) AS [count], Round(Avg(People.[Средний балл последней сессии]), 1 ) AS AvgP
FROM People
WHERE (((People.[Средний балл последней сессии]) > AvgP));
Answer the question
In order to leave comments, you need to log in
You cannot use an alias. In WHERE use full function. And are you sure you need WHERE, not HAVING?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question