SQL
AخA
SELECT p.page_title, time_to_sec( timediff( now(), r.rev_timestamp ) ) AS 'secs'
FROM elwiki_p.page p
INNER JOIN elwiki_p.templatelinks t ON p.page_id = t.tl_from
INNER JOIN elwiki_p.revision r ON r.rev_id = p.page_latest
WHERE t.tl_title = 'Υπό_κατασκευή'
AND t.tl_namespace = 10
AND p.page_namespace = 0
ORDER BY 2 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.