Viewing 15 posts - 1 through 15 (of 51 total)
edward.otto (8/12/2010)
I don't hail from anywhere - it usually hails on me.I come from Chicago.
lol, nice one! 🙂
August 13, 2010 at 6:45 am
Tom.Thomson (8/13/2010)
sushantkumar1984 (8/12/2010)
Can u tell me 1 thing...holland and netherlands are the same...
why does it have 2 names...
or are they different..
some people say holland and some the netherlands..
Holland is two...
August 13, 2010 at 6:41 am
Try this.. The code below has Data as your table and PinCode, the column.
declare @table table (LengthOfPincode int, AddZeros varchar(10))
insert into @table values (1,'00000')
insert into @table values (2,'0000')
insert into @table...
July 26, 2010 at 6:22 am
I agree with people saying that 5 would have been an interesting option! 🙂
July 1, 2010 at 12:49 am
I'm not sure why DISTINCT was required here..
SELECT @t = @t + @comma + a.a ,@comma = ','
FROM #a a ORDER BY 1
The above select returns a C...
June 29, 2010 at 12:49 am
Viewing 15 posts - 1 through 15 (of 51 total)