Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Aram
.
Retrieves inactive bots that haven't made any edits (on Central Kurdish Wikipedia) in the last 30 days. For active bots with local edit counter, see https://quarry.wmcloud.org/query/77632 For active bots with live edit counter, see https://quarry.wmcloud.org/history/77632/816452/792431
Toggle Highlighting
SQL
USE ckbwiki_p; WITH InactiveBotsData AS ( SELECT actor_name AS Username, MAX(rev_timestamp) AS LastEditTimestamp, user_editcount AS NumberOfEdits, GROUP_CONCAT(DISTINCT actor_user_groups.ug_group) AS BotGroups, user_registration AS RegistrationTimestamp FROM revision JOIN actor ON actor_id = rev_actor JOIN user ON actor_user = user_id LEFT JOIN user_groups AS actor_user_groups ON user_id = actor_user_groups.ug_user WHERE actor_user_groups.ug_group LIKE '%bot%' GROUP BY Username HAVING LastEditTimestamp < DATE_FORMAT(NOW() - INTERVAL 30 DAY, '%Y%m%d%H%i%s') -- Change '30 DAY' to the desired inactivity threshold ) SELECT ROW_NUMBER() OVER (ORDER BY LastEditTimestamp ASC) AS '#', Username, DATE_FORMAT(LastEditTimestamp, '%Y %M %e') AS LastEditDate, NumberOfEdits, BotGroups, DATE_FORMAT(RegistrationTimestamp, '%Y %M %e') AS RegistrationDate FROM InactiveBotsData ORDER BY LastEditTimestamp ASC;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...