Viewing 2 posts - 1 through 3 (of 3 total)
quote:declare @CT intset @CT = 1while @CT > 0begininsert into #tableb select LEFT(Team,CHARINDEX(',',Team+',')-1) AS 'Name',CallID from #tablea where Team <> ''update #tablea...
quote:
set @CT = 1
while @CT > 0
begin
insert into #tableb select LEFT(Team,CHARINDEX(',',Team+',')-1) AS 'Name',CallID from #tablea where Team <> ''
update #tablea...
March 13, 2003 at 12:01 pm
#451028
Actually, when I wrote the question, I was thinking multiple columns, however, I think what I need is each list member will become a separate record. I have two...
March 12, 2003 at 3:25 pm
#450920