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
Nemo bis
.
Toggle Highlighting
SQL
USE itwiki_p; SET @t = 1; /* time cutoff in days */ SET @n = 1; /* edits threshold */ SET @start_date = "20151015"; SET @end_date = "20151023"; /* Results in a set of "new editors" */ SELECT user_id, user_name, user_registration FROM ( /* Get revisions to content pages that are still visible */ SELECT user_id, user_name, user_registration, SUM(rev_id IS NOT NULL) AS revisions FROM user INNER JOIN logging ON /* Filter users not created manually */ log_user = user_id AND log_type = "newusers" AND log_action = "create" LEFT JOIN revision ON rev_user = user_id AND rev_timestamp <= DATE_FORMAT( DATE_ADD(user_registration, INTERVAL @t DAY), '%Y%m%d%H%i%S') WHERE user_registration BETWEEN @start_date AND @end_date GROUP BY 1,2,3 UNION ALL /* Get revisions to content pages that have been archived */ SELECT user_id, user_name, user_registration, SUM(ar_id IS NOT NULL) AS revisions /* Note that ar_rev_id is sometimes set to NULL :( */ FROM user INNER JOIN logging ON /* Filter users not created manually */ log_user = user_id AND log_type = "newusers" AND log_action = "create" LEFT JOIN archive ON ar_user = user_id AND ar_timestamp <= DATE_FORMAT( DATE_ADD(user_registration, INTERVAL @t DAY), '%Y%m%d%H%i%S') WHERE user_registration BETWEEN @start_date AND @end_date GROUP BY 1,2,3 ) AS user_content_revision_count GROUP BY 1,2,3 HAVING SUM(revisions) >= @n;
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...