Fork of Users creating multiple accounts in the past day by MusikAnimal
This query is marked as a draft This query has been published by Xaosflux.

SQL

AخA
 
 SELECT actor_name, COUNT(log_id) AS created
 FROM logging_logindex
 JOIN actor_logging ON actor_id = log_actor
 WHERE log_type = 'newusers'
   AND log_timestamp > DATE_SUB(NOW(), INTERVAL 10 DAY)
--   AND NOT EXISTS (
--     SELECT 1 FROM user_groups
--     WHERE actor_user = ug_user
--       AND ug_group IN ('sysop', 'accountcreator', 'eventcoordinator')
--   )
 GROUP BY actor_name
 HAVING created > 2
 ORDER BY created 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.

Checking query status...