SQL
AخA
USE arwiki_p;
SELECT CONCAT('[[user:', rev_user_text,']]'), COUNT(rev_timestamp)
FROM pagelinks AS pl
INNER JOIN user AS u
ON u.user_name = REPLACE(pl_title, '_', ' ')
INNER JOIN revision AS r
ON r.rev_user = u.user_id
WHERE pl_from = 3187643
AND pl_namespace = 2
AND rev_timestamp > 20160601000000
AND rev_timestamp < 20160830235959
GROUP BY rev_user_text
;
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.