Fork of Files with duplicate extensions by DannyS712
This query is marked as a draft This query has been published by DannyS712.

SQL

AخA
 
USE commonswiki_p;
SELECT CONCAT('[[:File:', REPLACE(img_name, '_', ' '), ']]') AS FILE,
    img_minor_mime AS FORMAT
    FROM image
WHERE img_name LIKE '%.png.jpg'
OR img_name LIKE '%.svg.jpg'
OR img_name LIKE '%.jpg.png'
OR img_name LIKE '%.jpg.svg'
LIMIT 1000
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...