select daybook.userid, count(*) as count
from daybook, rating
where daybook.userid = rating.userid
group by daybook.userid
order by count desc
Tetapi Anda bahkan tidak benar-benar membutuhkan tabel buku harian:
select userid, count(*) as count
from rating
group by userid
order by count desc