SQL
x
use plwikisource_p;
SELECT
rev_user_text as user_name,
count(rev_id) as edits
FROM
revision
WHERE
rev_page IN (SELECT
cl_from
FROM
categorylinks
WHERE
cl_to='Uwierzytelniona'
)
GROUP BY
rev_user_text
ORDER BY edits DESC
LIMIT 700;
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.