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
.
Number of pages that are edit-protected to any level but not move-protected at all, grouped by level of protection and whether the protection is indefinite. (In particular, this doesn't see pages that are move-protected to a level lower than their edit protection.) For [[WP:RAQ#Edit protected-move unprotected pages]] circa 15 March 2024.
Toggle Highlighting
SQL
SELECT edit.pr_level, edit.pr_expiry = 'infinity' AS 'indefinite?', COUNT(*) FROM page_restrictions AS edit LEFT JOIN page_restrictions AS move ON move.pr_page = edit.pr_page AND move.pr_type = 'move' JOIN page ON page_id = edit.pr_page WHERE edit.pr_type = 'edit' AND move.pr_page IS NULL GROUP BY edit.pr_level, edit.pr_expiry = 'infinity';
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...