This query is marked as a draft This query has been published by Peter Bowman.

SQL

x
 
USE plwiktionary_p;
SET @timestamp = 20160101000000;
SET @min_edits = 10;
SELECT
    rev_user_text AS "IP",
    COUNT(*) AS "edit count"
FROM
    revision
WHERE
    rev_user = 0 AND
    rev_timestamp > @timestamp AND
    NOT EXISTS (SELECT NULL FROM change_tag WHERE ct_rev_id = rev_id AND ct_tag LIKE "%mobile_edit%")
GROUP BY
    rev_user_text WITH ROLLUP
HAVING
    COUNT(*) > @min_edits
;
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...