I'd like a SQL statement that finds the amount of posts for each user, then updates the specific field with that number.
On table_fpro_posts I want the count of posts that equal the poster_id and then update the field field_user_posts on table_users.
The relation between the tables would be user_id from the table_users table and poster_id from the table_fpro_posts table.
table_users table_fpro_posts
user_id = poster_id
I've noticed several members with a post count that is not accurate and I'd like to fix that, but not sure where to start with the SQL command.
Getting the count isn't too hard, but I don't want to go through each member and manually update them. That's not fun.
[php]
SELECT COUNT(post_id)
FROM `cvs_fpro_posts`
WHERE poster_id = 2[/php]