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)
.
Last run July 16 2015. This query gets the page title, username, timestamp, edit comment for all edits that 100% validated a particular it.wikisource book within a period of time. Copy/paste everything in the window below into your own new query to customize it!
Toggle Highlighting
SQL
#you can remove all the comments below, and the code will still run SELECT page_title, rev_user_text, rev_timestamp, rev_comment #change 'itwikisource_p' to 'enwikisource_p' to get this info for English Wikisource FROM itwikisource_p.page AS p JOIN itwikisource_p.revision AS r ON p.page_id = r.rev_page WHERE p.page_namespace = 108 #change page title to any other book in the 'Page' namespace to get info for that book #make sure that the title ends with a forward-slash "/" followed by a percent sign "%" AND p.page_title LIKE "Straparola_-_Le_piacevoli_notti_II.djvu/%" #you can use a different edit comment, for example 50%. #Make sure that you write a backslash before the percent, like 50\% #make sure to keep the /*, */, and the final % AND r.rev_comment LIKE "/* Pagine SAL 100\% */%" #Currently, gets all 100% edits between the beginning of June 16 and July 16 #the format is YYYYMMDDhhmmss "year, month, day, hour, minute second" AND r.rev_timestamp BETWEEN "20140616000000" AND "20150716000000";
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...