SQL
AخA
select actor_name, COUNT(revision.rev_id) as count
from `comment` com -- comment table, escaped with ` since it is a reserved word
JOIN revision ON rev_comment_id = com.comment_id
JOIN actor_revision ON actor_id = revision.rev_actor
WHERE rev_timestamp > '20230101000000'
AND comment_text like '%Create item for Steam application%'
GROUP BY actor_name;
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.