Dit werkt als de rij uit maximaal 9 delen bestaat.
Als er behoefte is aan meer delen, kunt u de subquery uitbreiden met meer getallen dan 9:
select
group_concat(
replace(t.part, '-', concat(' ', left(t.part, 2)))
order by t.partno
separator ' '
) Models
from (
select t.Models, p.partno,
replace(replace(
substring_index(t.Models, ';', p.partno),
substring_index(t.Models, ';', p.partno - 1),
''
), ';', '') part
from parts_listing t cross join (
select 1 partno union all select 2 union all select 3 union all
select 4 union all select 5 union all select 6 union all
select 7 union all select 8 union all select 9
) p
where replace(replace(Models, '-', ''), ';', '') regexp'^[0-9]*$'
) t
where t.part <> ''
group by t.Models
order by t.Models
Zie de demo
.