Hi,
brauch mal wieder eure Hilfe!
Ich hab mehre Tabellen mit folgender Struktur:
und eine Tabelle mit
So nun möchte ich zählen wie viele Einträge es in den Tab1 bis Tab7 gibt welche als gcid den gleichen Wert haben, wie die Haupttab als id.
Ich habs wie folgt versucht:
Hierbei kommt dann aber ein utopisches Ergebnis raus, dass nicht stimmen kann.
Was mache ich falsch?
brauch mal wieder eure Hilfe!
Ich hab mehre Tabellen mit folgender Struktur:
Tab1 id gcid text
...
Tab7 id gcid text
...
Tab7 id gcid text
Haupttab id ...
Ich habs wie folgt versucht:
PHP-Code:
SELECT COUNT(*) AS menge
FROM Tab1, Tab2, Tab3, Tab4, Tab5, Tab6, Tab7, Haupttab
WHERE Tab1.gcid = Haupttab.id
AND Tab2.gcid = Haupttab.id
AND Tab3.gcid = Haupttab.id
AND Tab4.gcid = Haupttab.id
AND Tab5.gcid = Haupttab.id
AND Tab6.gcid = Haupttab.id
AND Tab7.gcid = Haupttab.id
AND Haupttab.id LIKE '4'
Was mache ich falsch?
Kommentar