Viewing post 1 (of 1 total)
This seems to work
SELECT accountname,invoice_date, ROW_NUMBER()
OVER(PARTITION BY AccountName Order by INVOICE_DATE) as RankOrder from dbo.sagesales
where AccountName is not null
Insert help from above
But now I want to update a...
May 27, 2014 at 9:39 am
#1716739