Hallo zusammen
der Select befehl liefert mir dir richtigen Daten wenn ich ihn alleine ausführe aber im zusammen hang mit dem Update haut das ganze nicht richtig hin.
SQL-Code:
UPDATE (SELECT adressdaten.id AS adressdaten_id,
ort.id AS ort_id,
ort.plz AS ort_plz,
ort.ort AS ort_ort,
ort.land_id AS ort_land_id,
land.land AS land_land,
land.id AS land_id
FROM adressdaten LEFT OUTER JOIN ort ON adressdaten.ort = ort.id
LEFT OUTER JOIN land ON adressdaten.land = land.id Where land.id = 6 GROUP BY ort.plz) SET ort.land_id = 6
Vielleicht hat jemand eine Tipp für mich wie ich das ganze umbauen kann so das es funktioniert.
Tau