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
Nivas10798
.
Following is an SQL query on https://quarry.wmcloud.org/ to get a list of "unique" uploaders to the Wikimedia Commons category: Images from Wiki Loves Earth 2014, who have created their Wikimedia account during the campaign period i.e. May and June 2014. The output includes user_name and their account registration_timestamp. Note: Below query is written for a Micro Task.
Toggle Highlighting
SQL
SELECT DISTINCT user_name, user_registration as registration_timestamp FROM user JOIN actor ON actor_user = user_id INNER JOIN revision ON rev_actor = actor_id INNER JOIN categorylinks ON rev_page = cl_from WHERE cl_to = "Images_from_Wiki_Loves_Earth_2014" and cl_type = "file" and user_registration BETWEEN "20140501000000" and "20140630235959" and IS NULL
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...