Viewing 8 posts - 1 through 8 (of 8 total)
Well taking the exact same example I originally used and replacing the ROW_NUMBER function with rank as below
WITH Leaderboard AS
(SELECT FirstName + ' ' + Surname AS Player, ShotsTaken AS...
October 23, 2007 at 8:08 am
From what I understand you specify the order by to use - using an example similar to what I've seen
WITH Leaderboard AS
(SELECT FirstName + ' ' + Surname AS...
October 23, 2007 at 4:08 am
Thanks for taking the time to give feedback Mike (and Jack), it helps to have a better idea of whats going on behind the scenes.
So I gather that the...
October 10, 2007 at 7:32 am
Hi Mike, thanks for your input.
I've changed the WHERE clause now as a matter of course, but out of interest I ran both queries on exactly the same data using...
October 9, 2007 at 10:25 am
Thanks for the comment Jack.
I used isnull/coalesce here because I had to consider both NULLs and empty string values owing to how different processes update this table.
As it happens I...
October 9, 2007 at 6:36 am
Sorry if this has already been covered but after reading 6 pages of unconstructive criticism by cimode I couldn't take any more.
Regarding Rule 4, I had an issue when using...
October 9, 2007 at 5:33 am
Sorry if this has already been covered but after reading 6 pages of unconstructive criticism by cimode I couldn't take any more.
Regarding Rule 4, I had an issue when using...
October 9, 2007 at 5:25 am
Viewing 8 posts - 1 through 8 (of 8 total)