SQL
x
select t1.actor_id, t1.actor_user, t1.actor_name, p.page_title, r.rev_page, count(*)#, r.rev_id, r.rev_timestamp
from (
select actor_id, actor_user, actor_name, count(distinct(page_id))
from revision, page, actor
where page_id in (863, 6886, 49001, 37071, 765, 2154) and actor_id=rev_actor and rev_page=page_id and rev_minor_edit=0
group by actor_name
having count(distinct(page_id))>=2
) t1, revision r, page p
where t1.actor_id=r.rev_actor and r.rev_page in (863, 6886, 49001, 37071, 765, 2154) and r.rev_page=p.page_id and rev_minor_edit=0
group by actor_id, p.page_id
order by actor_id, p.page_id
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.