Quick method description:
I have two tables, lets name them table ONE and table TWO. Every table record has an id of its author (user). There are no limits for records per user.
I would like to run a statistics page for each user.
For example, when John logs in:
John | 20 of A (list) | 150 of B (list)
Demo code
$a = mysql_query("SELECT * FROM A WHERE userID='$userID'");
$b = mysql_query("SELECT * FROM B WHERE userID='$userID'");
$a_num=mysql_num_rows($a);
$b_num=mysql_num_rows($b);
$echo "$userID | $a_num of A <a href='/a/$userID'>(list)</a> | $b_num of B <a href='/b/$userID'>(list)</a> ";
The question:
So, is check for number of records (every time user visits his stats page) an optimal solution when number of table records come to few hundred or maybe thousand? Is there any better way to run statistics? Maybe a separate table which counts records for each user?
Thanks :)