SQL
AخA
USE commonswiki_p;
SELECT img_name , img_size, (img_width * img_height) AS px, img_timestamp
FROM image
WHERE img_media_type = 'BITMAP'
AND img_minor_mime = 'gif'
AND img_width * img_height < 100
ORDER BY img_size;
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.