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
Cryptic
.
Edits to DRV's daily log subpages dated 2023 and later. (The pages are dated 2023, not the edits. That's a different question, since e.g. [[WP:Deletion review/Log/2022 December 31]]'s most recent edit was on 2023 January 10.) For [[WP:HD#How to find out the edit count of pages with templates?]] circa 3 November 2023.
Toggle Highlighting
SQL
SELECT edits, page_title FROM ( SELECT COUNT(*) AS edits, page_title, MIN(rev_timestamp) AS ts FROM revision JOIN page ON page_id = rev_page WHERE page_namespace = 4 AND page_title LIKE 'Deletion\_review/Log/2023\_%' -- for the index AND page_title RLIKE '^Deletion_review/Log/2023_(January|February|March|April|May|June|July|August|September|October|November|December)_(3[01]|[12][0-9]|[1-9])$' GROUP BY page_title WITH ROLLUP ) sq ORDER BY ts ASC, edits DESC; -- irritating that rollup+order by needs a subquery
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...