SELECCIONAR t.Account
, AVG (t.Count) COMO AvgCount
, SUMA (t.Count) COMO SumCount
, (Datename (ww, getdate ()) + ' ''' + Datename (yy, getdate ())) como período
Del tblHFBYACC t
DONDE Datename (año, getdate ()) >= (Datename (año, getdate ()) + (DatePart (ww, getdate ()) - 1) - 52)
GRUPO POR t.Account
|