SQL
AخA
SELECT actor_name, count(*)
FROM revision_actor_temp
Join actor on revactor_actor = actor_id
WHERE revactor_timestamp > '20180101000000' AND revactor_timestamp < '20180601000000'
AND actor_name in ( 'Bawolff', 'Isarra', 'Quiddity' )
GROUP BY actor_name;
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.