Folgende Tabelle habe ich
table1
id ! titel ! city ! country 1 ! inhalt ! 1 ! 3 2 ! inhalt ! 2 ! 3 3 ! inhalt ! 4 ! 3
table2
id ! titel 1 ! berlin 2 ! koeln 3 ! germany 4 ! munich
Das Ziel ist es eine SELECT Abfrage zu erstellen die table1 ausgibt, aber stadt den Zahlen bei city und country die titel aus der table2
id ! titel ! city ! country 1 ! inhalt ! berlin ! germany 2 ! inhalt ! koeln ! germany 3 ! inhalt ! munich ! germany
folgendes habe ich bis jetzt.
SELECT a.titel, b.titel AS city FROM table1 a, table2 b WHERE a.city =b.id
bis hier her geht es auch. Dcoh mir kommt keine Idee wie icj die zweite Abfrage integrieren kann.
a.contry =b.id
weil wenn ich diese einfach hinter die WHERE Bedingung mache, hebelt sie sich ja gegenseiten aus