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
Wurgl
.
Toggle Highlighting
SQL
WITH RECURSIVE Cat AS ( SELECT page_title, page_id FROM page WHERE page_title = 'Wikipedia:Dateiüberprüfung' AND page_namespace = 14 UNION SELECT SubCat.page_title, SubCat.page_id FROM page AS SubCat, categorylinks, Cat WHERE SubCat.page_namespace = 14 AND cl_from = SubCat.page_id AND cl_to = Cat.page_title AND cl_type = 'subcat' ) SELECT CONCAT('Datei:', log_title), log_timestamp, /*pl_from AS "Diese ignorieren", */actor_name, comment_text FROM actor, comment, logging LEFT JOIN (pagelinks AS p1, Cat) ON log_title = p1.pl_title # Die gelöschte Datei AND p1.pl_namespace = 6 # -- "" -- AND Cat.page_id = pl_from # ist auf einer Seite aus Kat+Unterkat Wikipedia:Dateiüberprüfung LEFT JOIN (pagelinks AS p2, categorylinks) ON log_title = p2.pl_title # Die gelöschte Datei AND p2.pl_namespace = 6 # -- "" -- AND p2.pl_from = cl_from # ist auf einer Seite die in der Kategorie ist AND cl_to = 'Wikipedia:Dateiüberprüfung_(Tageskategorien,_archiviert)' WHERE log_timestamp > '20230101' AND log_action = 'delete' AND log_namespace = 6 AND log_actor = actor_id AND log_comment_id = comment_id AND comment_text NOT LIKE 'Datei liegt bereits auf [[Wikimedia Commons]]%' AND comment_text NOT LIKE 'Diese Datei ist auf Wikimedia Commons als%' AND comment_text NOT LIKE 'Übertragen nach [[Wikimedia Commons]] unter%' AND comment_text NOT LIKE 'Identische Datei ist auf [[Hilfe:Wikimedia Commons|Wikimedia Commons]] vorhanden%' AND comment_text NOT LIKE 'Unnötig, Datei liegt auf [[WP:WC|Commons]]%' AND comment_text NOT LIKE '%urch SVG-Version ersetzt%' AND comment_text NOT LIKE 'NowCommons%' AND comment_text NOT LIKE 'Eine identische Datei ist auf Commons%' AND comment_text NOT LIKE '%auf Commons gelöscht%' AND comment_text NOT LIKE '%auf commons gelöscht%' AND comment_text NOT LIKE '%auf Commons vorhanden%' AND comment_text NOT LIKE '%Die Datei wurd auf Commons wiederhergestellt%' AND comment_text NOT LIKE '%Seite auf commons ist redirect%' AND comment_text NOT LIKE '%Duplikat%' AND p1.pl_from IS NULL AND p2.pl_from 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...