Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
soorajtnpki
Posting Yak Master
231 Posts |
Posted - 2008-11-06 : 04:03:50
|
hi all, look my temp table below and my required outputcreate table #TestTable ( ProdID varchar(5), ProdDesc varchar(256));insert into #TestTable ( ProdID, ProdDesc)select 'Prod1', 'Description 1' union allselect 'Prod1', 'Description 2' union allselect 'Prod2', 'Description 1' union allselect 'Prod3', 'Description 1' union allselect 'Prod3', 'Description 2' union allselect 'Prod3', 'Description 3' union allselect 'Prod3', 'Description 4';output:ProdID Descprod1 Description 1,Description 2prod2 Description 1prod3 Description 1,Description 2,Description 3,Description 4can u solve this in sql 2000 ..ok thanx |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2008-11-06 : 04:40:57
|
I am sorry to inform you I can't help you since Google is down. E 12°55'05.63"N 56°04'39.26" |
 |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2008-11-06 : 05:16:11
|
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=53293MadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|
|