Object
Neues Mitglied
Guten Abend.
Mich plagt folgender Query ein wenig:
Hierbei werden alle Einträge doppelt angezeigt und ich verstehe nicht recht wieso?
Mich plagt folgender Query ein wenig:
Code:
SELECT
`blogentrys`.*,
`blogcategorys`.`title` AS title,
(
SELECT COUNT(*)
FROM `blogcomments`
WHERE `blogcomments`.`parentid` = `blogentrys`.`id`
) AS comments
FROM
`blogentrys`,
`blogcategorys`,
`blogcomments`
WHERE `blogcategorys`.`id` = `blogentrys`.`categoryid`
ORDER BY `blogentrys`.`dateline` DESC
LIMIT 0,10
;
Hierbei werden alle Einträge doppelt angezeigt und ich verstehe nicht recht wieso?