Jens hat es schon in Beitrag #2 angedeutet - die Tabelle ist nicht in der ersten Normalform. Die Wiederholungsgruppe muss zuerst aufgelöst werden:
SQL-Code:
select name1 as name, * from tabelle where name1 is not null
union
select name2 as name, * from tabelle where name2 is not null
union
select name3 as name, * from tabelle where name3 is not null
union
select name4 as name, * from tabelle where name4 is not null
union
select name5 as name, * from tabelle where name5 is not null
order by name
Grüße vom marabu