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

SQL

AخA
 
SELECT
  concat( "[[User:", rc_user_text,"]]") as user,
  COUNT(rc_id) AS cnt,
  count(rc_id) / 10 as EPM,
  rc_timestamp as last_change
FROM recentchanges
WHERE rc_timestamp >= DATE_SUB(NOW(), INTERVAL 10 MINUTE)
AND rc_bot != 1
AND (rc_type = 0
OR rc_type = 1)
AND rc_comment not like "%AWB%"
GROUP BY rc_user_text
HAVING COUNT(rc_id) > 10
ORDER BY cnt 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...