ich habe 2 select anweisungen, die jede für sich das richtige ergebnis bringen. ich will aber eine anweisung daraus machen
1:
2:
1:
PHP-Code:
SELECT t1.*,t2.fid, COUNT(*) AS anzahl
FROM threads t2 INNER JOIN foren t1 ON t2.fid = t1.id
GROUP BY t1.id
PHP-Code:
SELECT fid,created AS letzter_eintrag
FROM answers
GROUP BY fid
Kommentar