Hi guys I have the following tables set up:

Articles:
ID | TITLE | CONTENT | USER | NUM_COMMENTS

COMMENTS
ID | ARTICLE_ID | TEXT

I need a sql statement which updates the NUM_Comments field of the articles table with teh count of the comments made against the article like:

update articles a, comments f 
set a.num_comments =  COUNT(f.`id`)
where f.article_id = a.id

The sql above doesn't work and I get an Invalid Use fo Group function error. I'm using MySQL Here.

link|improve this question

73% accept rate
Why exactly do you want to store that information in your articles table? Have you considered counting the comments each time you need that information? That way you avoid having duplicate informations in your database schema. – plang May 26 '11 at 7:42
Well the articles table is huge and I want to avoid having to do a join because I also need to sort articles based upon how most commented. – Ali May 26 '11 at 7:44
Ok, then another option for you is some kind of "materialized view". – plang May 26 '11 at 7:48
This seems to be a duplicate of stackoverflow.com/questions/1216175/… – No'am Newman May 26 '11 at 9:41
feedback

3 Answers

up vote 1 down vote accepted

You can't have a join in an update statement. It should be

update articles
set num_comments =
(select count (*) from comments
where comments.article_id = articles.id)

This will update the entire articles table, which may not be what you want. If you intend to update only one article then add a 'where' clause after the subquery.

link|improve this answer
Just note that you can join in an update if you alias the table to be updated - see stackoverflow.com/questions/1293330/sql-update-with-join – nonnb May 26 '11 at 7:59
feedback

This should work.

UPDATE articles a SET num_comments = 
(SELECT COUNT(*) FROM comments c WHERE c.article_id = a.id)

But i would rather update only one record when comment has been posted:

UPDATE articles a SET num_comments = 
(SELECT COUNT(*) FROM comments c WHERE c.article_id = 100) WHERE a.id = 100
link|improve this answer
I would be running this update query once every few hours via a cron job though – Ali May 26 '11 at 7:59
feedback

you cant do it in a generic inner join way. but you can do it in another way by:

1- Select all the ids from the articles table

2- iterate them and execute the following command

update articles set NUM_COMMENTS = (select count(id) from comments where id = $id) where id = $id

to enhance it more, in the 1st select dont select all the values especially when that table is too large, you need to iterate the articles and get 1000 records per iteration. This way u will maintain a healthy DB threads from your DB pool and you also save bandwidth.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.