Viewing 2 posts - 1 through 2 (of 2 total)
LOL.
Microsoft have made it such a long winded process for BI developers to set up a local environment. I have recently bought a new laptop and it took me...
January 6, 2016 at 4:39 am
#1849793
Very simple example of how to use the OVER clause:
SELECT
Year(OrderDate),
ROW_NUMBER() over(Partition By Year(OrderDate)order by OrderDate) as RowNum,
*
FROM [Northwind].[dbo].[Orders]
ORDER...
December 5, 2013 at 5:36 am
#1671007