How can we help you today? How can we help you today?
spthorn

Activity overview

Latest activity by spthorn

GROUP BY suggestion incorrect for query containing FIRST_VALUE
CREATE TABLE #deleteme ( id INT ,value1 INT ) SELECT id ,FIRST_VALUE(id) OVER (ORDER by value1 DESC) AS foo FROM #deleteme GROUP BY FIRST_VALUE(id) OVER (ORDER BY value1 DESC), id -- what S...
2 followers 5 comments 0 votes
Thanks for clarifying! I did think it odd, as the website/forums made no mention of it. Good deal. I love SQL Compare and use it on an at least weekly basis. / comments
Thanks for clarifying! I did think it odd, as the website/forums made no mention of it. Good deal. I love SQL Compare and use it on an at least weekly basis.
0 votes