SQL
x
USE commonswiki_p;
SELECT DISTINCT page.page_title, externallinks.el_to
FROM externallinks
INNER JOIN page ON externallinks.el_from = page.page_id
INNER JOIN templatelinks on templatelinks.tl_from = page.page_id
WHERE (externallinks.el_to LIKE "https://archive.org/details/%")
AND page.page_namespace = 6
AND templatelinks.tl_title = "Book"
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.