Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Mile.Horizon
.
Toggle Highlighting
SQL
SELECT p.page_id, p.page_title, p.page_touched, actor.actor_name AS creator_username FROM page AS p LEFT JOIN flaggedpages AS fp ON p.page_id = fp.fp_page_id INNER JOIN ( SELECT rev_page, MIN(rev_id) AS first_rev_id FROM revision GROUP BY rev_page ) AS first_rev ON p.page_id = first_rev.rev_page INNER JOIN revision AS r ON first_rev.rev_page = r.rev_page AND first_rev.first_rev_id = r.rev_id INNER JOIN actor ON r.rev_actor = actor.actor_id INNER JOIN user_groups AS ug ON actor.actor_user = ug.ug_user AND ug.ug_group = 'editor' WHERE p.page_namespace = 0 AND fp.fp_page_id IS NULL AND p.page_is_redirect = 0 ORDER BY creator_username DESC;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...