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
Athulvis
.
Toggle Highlighting
SQL
SELECT rev.user_text AS editor, COUNT(*) AS total_edits, MIN(rev.timestamp) AS first_edit, MAX(rev.timestamp) AS last_edit FROM revision AS rev JOIN page AS p ON rev.page_id = p.page_id WHERE rev.user_text = 'USERNAME' -- Replace with the desired username AND rev.timestamp BETWEEN 'START_DATE' AND 'END_DATE' -- Replace with the date range (e.g., '2024-01-01' AND '2024-12-31') AND p.namespace = 0 -- Namespace 0 is the main namespace (for article edits) GROUP BY rev.user_text ORDER BY total_edits 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...