Viewing 10 posts - 31 through 40 (of 40 total)
Lowell (12/29/2009)
Justin James (12/29/2009)
One question I have about your SQL:
select ID/6 as REC,...
December 29, 2009 at 11:01 am
Thank you for the help Lowell. I'll make sure to include the appropriate SQL in my further posts.
One question I have about your SQL:
select ID/6 as REC, [ID]% 6 as...
December 29, 2009 at 10:33 am
There is not. I was thinking of using ROW_NUMBER(), but was unsure how to partition by each block of 6 rows.
December 29, 2009 at 10:06 am
Yes, that is correct. Each block of 6 is destined to become a singular row in the final table.
December 29, 2009 at 9:56 am
Please see my original post for code to copy/paste.
I also setup a "dummy" aggregate to see if I could get that to work -- I used min(text) for columnname. However,...
December 29, 2009 at 8:42 am
That was the trick! Thanks Adi!
December 14, 2009 at 10:44 am
I have tried to put the semi-colon before the with Publishers, but I get an error which states "Incorrect Syntax near ';'
December 14, 2009 at 10:34 am
This is occurring because of the way that numeric values are sorted. The query processor goes by the first character that it sees, and sorts that way. That's why you...
December 14, 2009 at 10:32 am
That worked great -- just what I needed!
Thanks!
December 9, 2009 at 8:19 am
Michael Valentine Jones (3/16/2009)
March 17, 2009 at 7:00 am
Viewing 10 posts - 31 through 40 (of 40 total)