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

SQL

AخA
 
select p.page_id, p.page_title, p.page_namespace, count(distinct(a.actor_id))
from page p, revision r, actor a, (
    select actor_id
    from actor, page, revision
    where page_id=63465223 and actor_id=rev_actor and rev_page=page_id and rev_minor_edit=0
    group by actor_id
    ) t1
where (a.actor_id = t1.actor_id and page_id in (63465223, 5137507, 62750956)) and a.actor_id=r.rev_actor and r.rev_page=p.page_id and r.rev_minor_edit=0
    /*and p.page_id in (63465223, 5137507, 62750956)*/ #and p.page_namespace in (0, 4)
group by p.page_id
having count(distinct(a.actor_id)) > 90
order by count(distinct(a.actor_id)) 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...