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
Jmorgan (WMF)
.
the usernames of all the people who had edited the page (or talk page) of the article, along with how many times they edited, the total number of bytes they have added (or removed), and the date of their most recent edit.
Toggle Highlighting
SQL
SELECT rev_user_text AS editor, COUNT(rev_id) AS num_edits, SUM(rev_len) AS bytes_changed, MAX(rev_timestamp) AS most_recent_edit FROM revision INNER JOIN page ON revision.rev_page = page.page_id WHERE page.page_namespace IN (0,1) AND page_title = "Howard_Gobioff" GROUP BY editor ORDER BY num_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...