Mac Taylor
Mac Taylor

Reputation: 5148

problem in using while loop in php&mysql

im using a while loop to show my latest forum topics and count some fields

I'm trying to do it in one query and here is my code :

  SELECT t.*,p.*,
       SUM(t.topic_approved='1') AS Amount_Of_Topics,
       SUM(t.topic_views) AS Amount_Of_Topic_Views,
       SUM(t.topic_replies) AS Amount_Of_Topic_Replies, 
       SUM(p.post_approved ='1') AS Amount_Of_Posts
    FROM  bb3topics t left join  bb3posts p ON t.topic_id=p.topic_id
    ORDER BY t.topic_last_post_id DESC LIMIT 10

problem :

this code shows only one forum topic and not the rest

is there anything wrong with my query code ?!

Upvotes: 0

Views: 55

Answers (2)

G-Rajendra
G-Rajendra

Reputation: 215

Yes you are missing GROUP BY.

Upvotes: 1

Salil
Salil

Reputation: 47472

Yes.

SUM is always used with GROUP BY clause

Upvotes: 3

Related Questions