with recursive rpl (artnr, suchb)
as (select a.artnr, a.suchb from myfile a
union all
select rpl.artnr, rpl.suchb
concat ', ' concat b.suchb
from rpl, myfile b
where rpl.art=b.art and rpl.art<>b.art
)
select * from rpl
| ||||
Hybrid View
Similar Threads
|
Bookmarks