SQL
AخA
select distinct(actor_name) from
revision
inner join comment on rev_comment_id=comment_id
inner join actor on rev_actor=actor_id
inner join page on rev_page=page_id
where page_namespace=0 and (comment_text like '%fix2%') and rev_timestamp>'20210101000000'
order by rev_timestamp 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.