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
Bawolff
.
SQL that returns similar information as https://en.wikipedia.org/w/index.php?title=Anarchism&action=history
Toggle Highlighting
SQL
SELECT timestamp(rev1.rev_timestamp), actor_name, rev1.rev_len, (CAST(rev1.rev_len AS SIGNED) - CAST(rev2.rev_len as signed)) 'diff', rev1.rev_minor_edit, rev1.rev_deleted, comment_text, group_concat( ctd_name SEPARATOR ', ' ) 'tags' FROM page JOIN revision rev1 on rev1.rev_page = page_id JOIN revision rev2 on rev1.rev_parent_id = rev2.rev_id JOIN actor on actor_id = rev1.rev_actor JOIN comment on comment_id = rev1.rev_comment_id JOIN change_tag on ct_rev_id = rev1.rev_id JOIN change_tag_def on ct_tag_id = ctd_id WHERE page_namespace = 0 AND page_title = 'Anarchism' GROUP BY rev1.rev_id ORDER BY rev1.rev_timestamp desc LIMIT 30;
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...