Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Not sure how to write this in sql
Always think in terms of sets of data!
This code makes several assumptions, which may not be safe ones. But you can adjust this to handle things appropriately.
But this should give you the idea:
insert into table_b b
(id, col2)
select id, decode(counter,1,'1',2,'1,2',3,'1,2,3',NULL)
from
(select
a.id, count(a.id) counter
from table_a a
group by a.id
)
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Jan 12 2005 - 16:24:48 CST
![]() |
![]() |