SQL
x
SELECT
a.actor_user,
a.actor_name,
COUNT(*) AS edit_count
FROM
revision r
JOIN
actor a ON r.rev_actor = a.actor_id
JOIN
page p ON r.rev_page = p.page_id
WHERE
p.page_namespace = 4
AND p.page_title = 'Форум_администраторов'
AND YEAR(r.rev_timestamp) = 2023
GROUP BY
a.actor_user
ORDER BY
edit_count DESC
LIMIT 10;
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.