SQL
x
SELECT user_name
FROM user
LEFT JOIN user_groups ON ug_user = user_id
WHERE ug_group = 'sysop'
AND NOT EXISTS (SELECT 1
FROM logging_userindex
LEFT JOIN actor_logging ON actor_id = log_actor
WHERE actor_user = user_id
AND log_type IN ('delete', 'protect', 'block')
AND log_timestamp >= '20160602');
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.