Fork of Enhanced source usage: last 90d, en.wiki by PPelberg (WMF)
This query is marked as a draft This query has been published by PPelberg (WMF).

SQL

x
 
select actor_name, count(*) as total
from (
    
select ct.ct_id, ct.ct_rev_id, actor_user, actor_name
from eswiki_p.change_tag ct
inner join eswiki_p.revision_actor_temp rat
on ct.ct_rev_id = rat.revactor_rev
inner join eswiki_p.actor act
on rat.revactor_actor = act.actor_id
inner join eswiki_p.change_tag_def
on ct_tag_id = ctd_id
where ctd_name = 'discussiontools-reply'
and substring(revactor_timestamp,1,8) >= '20210831' 
) a
group by actor_name
order by count(*) 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.

Checking query status...