3
我不時擺弄SQL Server,並且出現類似於 Can't use a window function on an aggregate
的錯誤。這是令人沮喪的,因爲我有SQL Server 2008,我知道2012提供了更好的窗口函數功能,並且我使用了它們很多。然而,我不時做些類似於在SQL Server中嵌套窗口函數
select me.patid
,COUNT(*) as eligibilityGapsNo
,COUNT(*) over(partition by count(*))
from memberEligibility as me
group by me.patid
並且這工作正常。我想是因爲我已經由me.patid分組了,但是有沒有人有更清晰的想法,可以像這樣嵌套窗口函數?
總是很高興看到聽到別人的觀點 – wootscootinboogie 2013-05-07 14:28:38