Hallo Leute,
ich bin zwar nicht auf den Kopf gefallen aber ich schaffe es nicht aus der GeoDB
anhand plz oder ort oder bundesland die jeweiligen Ausgaben auszugeben♠
PLZ :
ORT:
BUNDESLAND:
Vielleicht kann mir mal einer ne kleine Hilfe geben?
ich bin zwar nicht auf den Kopf gefallen aber ich schaffe es nicht aus der GeoDB
anhand plz oder ort oder bundesland die jeweiligen Ausgaben auszugeben♠
PLZ :
ORT:
BUNDESLAND:
Vielleicht kann mir mal einer ne kleine Hilfe geben?
PHP-Code:
SELECT locations.loc_id, name.text_val,plz.text_val FROM geodb_locations locations
LEFT JOIN geodb_textdata name ON name.loc_id = locations.loc_id
LEFT JOIN geodb_textdata plz ON plz.loc_id = locations.loc_id
WHERE
(loc_type = 100300000 AND name.text_type = 500100000) AND (loc_type = 100800000 AND plz.text_type = 500100000)
Kommentar