SQL
AخA
SELECT COUNT(*), CONCAT(SUBSTRING_INDEX(actor_name, ':', 4), '::/64') AS subnet
FROM revision_userindex
JOIN actor_revision ON rev_actor = actor_id
WHERE actor_user IS NULL
AND actor_name LIKE '%:%'
GROUP BY subnet
HAVING COUNT(*) >= 5000
ORDER BY COUNT(*) 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.