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
DreamRimmer
.
Toggle Highlighting
SQL
SET @start_date = '2023-01-01 00:00:00'; SET @end_date = '2023-10-10 00:00:00'; SELECT user.user_name AS creator, COUNT(*) AS redirect_count FROM page JOIN revision ON page.page_id = revision.rev_page JOIN actor_revision ON revision.rev_actor = actor_revision.actor_id JOIN user ON actor_revision.actor_user = user.user_id WHERE page.page_namespace = 0 AND page.page_is_redirect = 1 AND revision.rev_timestamp >= @start_date AND revision.rev_timestamp < @end_date GROUP BY creator ORDER BY redirect_count 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...