SQL
x
use plwikisource_p;
SELECT
page_title as title,
rev_page AS id,
count(rev_id) as edits,
max(rev_timestamp) as date
FROM
revision JOIN page ON rev_page = page_id
WHERE
rev_page IN (SELECT
cl_from
FROM
categorylinks
WHERE
cl_to='Uwierzytelniona'
)
GROUP by rev_page
ORDER BY edits
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.