SQL
x
SELECT actor_name as username, count(*) / user_editcount as frequency
FROM revision
LEFT JOIN comment on rev_id = comment_id
LEFT JOIN actor on rev_actor = actor_id
LEFT JOIN user on actor_user = user_id
WHERE comment_text REGEXP '[Bb]eautif(ied|ications)'
GROUP BY actor_name
ORDER BY 2 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.