Frank Jonas: Ist ein Join das richtige?

Beitrag lesen

Hallo,Odium

Ich denke, dieses Statement sollte es tun:

SELECT count(info) Anzahl, MAX(beschreibung) typ FROM table1, table2 WHERE table1.id1 = table2.id1
GROUP BY table1.id1

mit 2 Tabellen, wobei info in table2 ein Inhaltsfeld ist, beschreibung in table1 ein Inhaltsfeld ist
table1.id1 ist der Primärschlüssel in table1
table2.id1 ist der Fremdschlüssel in table2 auf table1

HTH

Grüße Frank