SQL
AخA
USE elwiki_p;
SELECT
rev_user_text,
COUNT(rev_user_text),
rev_comment,
page_title,
rev_timestamp
FROM revision
JOIN page ON page_id = rev_page
WHERE
page_namespace in (2) AND
(page_title LIKE '%.css' OR
page_title LIKE '%.js')
GROUP BY rev_user_text
ORDER BY COUNT(*) 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.
Query status: complete
Executed on Mon, 13 Aug 2018 09:44:24 UTC.