alter query ging soweit
neuerquery hab nun keine ausgabe mehr
will im neuen noch die anzahl der comments zu einem beitrag haben und mir hinterher ausgeben lassen
dass ganze wird ne auflistung von beiträgen wo dahinter in klammern die comment anzahl steht
PHP-Code:
$sql = "SELECT
A.* ,
B.ttrating AS ttrating ,
C.ttid
FROM
(".$table." AS A
LEFT JOIN ".$rating." AS B
ON A.id = B.ttid)
LEFT JOIN ".$comments." AS C
ON A.id = C.ttid
WHERE
A.fur='".$_GET['show']."'
ORDER BY A.datum DESC";
PHP-Code:
$sql = "SELECT
A.* ,
B.ttrating AS ttrating ,
C.ttid,count(C.ttid) AS anz
FROM
(".$table." AS A
LEFT JOIN ".$rating." AS B
ON A.id = B.ttid)
LEFT JOIN ".$comments." AS C
ON A.id = C.ttid
WHERE
A.fur='".$_GET['show']."'
ORDER BY A.datum DESC";
will im neuen noch die anzahl der comments zu einem beitrag haben und mir hinterher ausgeben lassen
dass ganze wird ne auflistung von beiträgen wo dahinter in klammern die comment anzahl steht
Kommentar