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
Palemeditation
.
Toggle Highlighting
SQL
set max_statement_time = 60; set @start_date = "20240510"; select image.img_name, page.page_id from image left join page on page.page_title = image.img_name where img_name in ( select i2.img_name from image i2 where -- No point scanning older than this i2.img_timestamp > @start_date and -- Usually DALL-E images don't have metadata i2.img_metadata = '{"data":{"MEDIAWIKI_EXIF_VERSION":2}}' and -- We don't want SVGs or whatever ( i2.img_name like "%.png" or i2.img_name like "%.jpg" ) and -- "Standard" DALL-E image resolution i2.img_width = 1024 and i2.img_height = 1024 )
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...