This query is marked as a draft This query has been published by ԱշոտՏՆՂ.

SQL

x
 
select actor_name, count(*)
from logging 
join actor on actor_id = log_actor
where log_type in ('abusefilter', 'block', 'contentmodel', 'delete', 'gblblock', 
                   'managetags', 'massmessage', 'merge', 'patrol', 'protect', 'rights') 
group by actor_name
limit 100;
select user_id, user_name
from user 
join user_groups on user_id = ug_user
where ug_group = 'sysop'
limit 10;
SELECT DISTINCT log_type FROM hywiki_p.logging
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...