This query is marked as a draft This query has been published by Uhai.

SQL

AخA
 
SELECT CONCAT('https://en.wikipedia.org/wiki/File_talk:', p.page_title) AS 'Page', TIMESTAMP(r.rev_timestamp) AS 'Last revision', p.page_len AS 'Page length'
FROM page p
LEFT JOIN templatelinks tl ON p.page_id = tl.tl_from
LEFT JOIN pagelinks pl ON p.page_id = pl.pl_from
INNER JOIN revision r ON p.page_latest = r.rev_id
WHERE p.page_namespace = 7
AND tl.tl_from IS NULL
AND pl.pl_from IS NULL
AND p.page_len > 0
-- AND pl.pl_namespace = 4 AND pl.pl_title = 'Signatures'
ORDER BY r.rev_timestamp DESC
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...