SQL
AخA
select actor_name, rev_timestamp, user_id
from revision_userindex
join actor on rev_actor = actor_id
join user on actor_user = user_id
where user_editcount = 2
and rev_timestamp like '2001%'
and user_id < 10000
order by rev_timestamp desc
limit 20;
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.