Kommentare im News zählen!

Ich habe ein ähnliches Problem, und zwar möchte ich einen Eintrag und die dazu gehörigen Kommentare auslesen und gleichzeit auch noch die Kommentare zählen.

Das ganze sieht bisher so aus:

PHP:
"SELECT 
                one.id,                
                DATE_FORMAT(one.date, '%d.%m.%y %H:%i') AS `date`,
                one.type as `nodetype`,
                one.title as `title`,
                one.content as `content`,
                one.user as `author`,
                two.content as `comment`,
                DATE_FORMAT(two.date, '%d.%m.%y %H:%i') AS `commentdate`,
                COUNT(two.id) as `anzahl`
            FROM
                nodes as one 
            LEFT JOIN 
                comments as two 
            ON 
                one.id = two.nid            
            WHERE
                one.id = '".$id."'
            GROUP BY
                one.id"

Ich erhalte als Ergebnissumme allerdings immer nur 1. Was wohl mit der GROUP BY Klausel zusammenhängt.
 
Zurück