This query is marked as a draft This query has been published by Erutuon.

SQL

AخA
 
select
    date_format(rev_timestamp, '%Y-%m-%d') as day,
    actor_name,
    count(*) as count
from revision
join actor
    on actor_id = rev_actor
where rev_timestamp like '2020%'
group by substring(rev_timestamp, 1, 8), actor_name
order by count(*) desc
limit 300;
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...