&&組我有這樣的SQL查詢聚集功能由
select U.DisplayName, U.Reputation , nombre = count(B.Id)
from Badges B, Users U
where U.Location like '%usa%'
and B.UserId = U.Id
group by B.Id
我不明白爲什麼我得到這個錯誤
Column 'Users.DisplayName' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
- 什麼是這個錯誤的原因是什麼?
- 我該如何解決?
U.displayname不在組列表中 – Azar
你是什麼意思?我放了B.Id'組 –