Fork of List of file pages with binary data by とある白い猫
This query is marked as a draft This query has been published by とある白い猫.

SQL

x
 
USE commonswiki_p;
SELECT Concat('https://commons.wikimedia.org/wiki/File:', img_name) AS 'URL', img_name, img_size, img_width, img_height, img_media_type, img_minor_mime  FROM image 
WHERE (img_width * img_height * 3) < img_size AND img_media_type = 'BITMAP'
AND (img_height + img_width) < 8000
AND img_minor_mime != 'gif' AND img_minor_mime != 'tiff' AND img_minor_mime != 'vnd.djvu' AND img_minor_mime != 'png'
AND img_minor_mime != 'x-xcf' 
ORDER BY img_size DESC
LIMIT 1;
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...