SQL
AخA
select count(rc_id) as Twinkle_Welcomed, actor_name as 'Editor', ipb_expiry As 'Blocked'
from recentchanges_userindex
left join actor on rc_actor = actor_id
left join comment on rc_comment_id = comment_id
left join ipblocks on actor_user = ipb_user
where comment_text like "Welcome to Wikipedia!"
group by rc_actor
order by Twinkle_Welcomed 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.