Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
Fork of
de.wikibooks GFDL files by upload date in cat
by
MGA73
This query is marked as a draft
This query has been published
by
MGA73
.
Toggle Highlighting
SQL
-- Query to get original upload date from the image and oldimage tables SELECT CONCAT("# [[:File:", COALESCE(oi_name, page_title), "]]") as File, COALESCE(MIN(oi_timestamp), MIN(img_timestamp)) as original_upload_date FROM page LEFT JOIN oldimage ON page.page_title = oi_name AND page.page_namespace = 6 AND oi_deleted = 0 LEFT JOIN image ON page.page_title = img_name AND page_namespace = 6 JOIN templatelinks ON tl_from = page_id JOIN actor_image ON img_actor = actor_id JOIN categorylinks ON cl_from = page_id AND cl_type = "file" AND cl_to = "CC-BY-SA-3.0" #GFDL-Bild" GROUP BY page_title, oi_name;
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...