Viewing 3 posts - 1 through 3 (of 3 total)
Jeff,
here is a Google link to a copy of this book:
Have a good day
Greg
September 28, 2009 at 6:43 am
Jeff, great job, I like your articles.
I have discovered the Tally concept reading the Transact-SQL by Ales Spetic & Jonathan Gennick. They call it Pivot.
I think that...
September 25, 2009 at 12:59 pm
declare @int table (n char(1))
insert @int
select '0'
union select '1'
union select '2'
union select '3'
union select '4'
union select '5'
union select '6'
union select '7'
union select '8'
union select '9'
insert util_nums
select convert(int,n1.n + n2.n...
November 24, 2008 at 1:37 pm
Viewing 3 posts - 1 through 3 (of 3 total)