SQL
x
select CONCAT("[[User:",actor.actor_name,"|]]") As username, logging.log_type, logging.log_action, count(logging.log_id) AS actions
from logging
inner join actor on logging.log_actor = actor.actor_id
where actor.actor_user in (select ug_user from user_groups WHERE ug_group = 'sysop')
/*and logging.log_timestamp between 20210313000000 and 20220313000000*/
group by username, log_type
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.