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
Uhai
.
Toggle Highlighting
SQL
WITH infobox_template AS ( SELECT tl.tl_from FROM enwiki_p.templatelinks tl WHERE tl.tl_target_id = 1182 ) SELECT CONCAT('https://en.wikipedia.org/wiki/User:', p.page_title) AS 'User page', u.user_editcount AS 'User edit count', TIMESTAMP(r.rev_timestamp) AS 'Page last edited', p.page_len AS 'Page length', CASE WHEN p.page_is_new THEN 'Yes' ELSE 'No' END AS 'Is new?' FROM page p INNER JOIN user u ON REPLACE(SUBSTRING_INDEX(p.page_title, '/', 1), '_', ' ') = u.user_name INNER JOIN revision_userindex r ON p.page_latest = r.rev_id WHERE p.page_namespace = 2 AND p.page_id IN (SELECT tl_from FROM infobox_template) AND p.page_title LIKE '%/sandbox' AND u.user_editcount <= 50 AND r.rev_timestamp > DATE_SUB(NOW(), INTERVAL 1 YEAR) ORDER BY r.rev_timestamp 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...