Reputation: 3934
This code only shows categories with articles in them. I want to show all categories. Pls help.
$query = "SELECT C.id, C.jcat_name,COUNT(A.catid) AS catid FROM jt_categories C INNER JOIN jt_articles A ON C.id = A.catid GROUP BY C.id";
Upvotes: 0
Views: 331
Reputation: 1
Did u try LEFT JOIN ? bc. (i think) in second table u have NULL articles for some categories.
Upvotes: 0
Reputation: 125466
change to left join
SELECT C.id, C.jcat_name,COUNT(A.catid) AS catid FROM jt_categories C
LEFT JOIN jt_articles A ON C.id = A.catid GROUP BY C.id
Upvotes: 1
Reputation: 497
Change INNER JOIN for LEFT JOIN in your query.
INNER JOIN looks explicitely for the join in the data
Upvotes: 1