I have a table ...
Ratings (userid, movieid, ratings, time)
where ...
select count(*) from ratings where userid = X; (No of ratings of a particular user)
Here, X ranges from 1-6040!
How should I get the count of each user and then store it in another table 'Users' in the attribute 'countUsers' ?
Please help !