SQL
AخA
use jawiki_p;
select rev_user_text, count( * ) as c
from page as frompg
join pagelinks as pl on frompg.page_id = pl.pl_from and (pl.pl_from_namespace = "4" and pl.pl_namespace = "0")
join page as topg on topg.page_title = pl.pl_title
join revision_userindex on topg.page_id = rev_page
where
rev_parent_id = "0" and
frompg.page_title like "月間新記事賞/%年%月"
group by rev_user_text
order by c desc
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.