SQL
AخA
select comment_text, actor_name from recentchanges
join comment on recentchanges.rc_comment_id=comment.comment_id
join actor on recentchanges.rc_actor=actor.actor_id
where LOWER(comment_text) like "%provide information%"
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.