Насколько я понял...
$q=$db->query("select table1.*, count(table2.*) as count from table1 left join table2 on table1.id = table2.id_razd group by table1.id order by id"
;
while ($post=$q->fetch_object()){
///Вывод счетчика
echo $post->cont;
}
________
P.s: возможна ошибка, ибо в подобных запросах я прихожу к верному варианту лиш после тестов