Fork of Statistics of editing MediaWiki JS/CSS in ruwiki (all-time) by Stjn
This query is marked as a draft This query has been published by IKhitron.

SQL

AخA
 
USE ruwiki_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 != 8 AND
    (page_title LIKE '%.css' OR
    page_title LIKE '%.js') AND
    page_title != 'Gadget-markadmins.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.

Checking query status...