This query is marked as a draft This query has been published by Chaduvari.

SQL

AخA
 
SELECT
  user_name, user_editcount
FROM
  logging,actor,user
WHERE
  log_type = "newusers"
AND
  log_action = "create"
AND
  substr(log_timestamp,1,4) ="2025" /* specify a datetime range */
and user_editcount>0
and actor_id=log_actor
and user_id=actor_user
order by user_editcount 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...