Viewing post 1 (of 1 total)
SELECT
Name
,RANK() OVER (Partitin By Age ORDER BY Date)
FROM
dbo.Person WITH (NOLOCK);
December 5, 2013 at 9:29 am
#1671194