Viewing 4 posts - 31 through 34 (of 34 total)
Thanks David!!! this is awesome. Really helps...
May 12, 2006 at 7:35 am
#637541
There is no relationship between T1 and T2. T1 is column in Table1 and T2 is column in Table2.
Yes I want to display the data side-by-side. Is this possible?
May 12, 2006 at 5:31 am
#637495
Sorry the output I want is:::
T1 T2
- - - - - - -
300 600
400 700
May 12, 2006 at 4:40 am
#637488
Hi Adrian
Hope this helps:::
Use Pubs
Declare @TitleList Varchar(8000)
SELECT @TitleList = COALESCE(@TitleList + ', ', '') + au_fname FROM Authors
SELECT @TitleList
Thanks
Brij Rauthan
May 12, 2006 at 3:42 am
#637477