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

SQL

x
 
SELECT 
    a.actor_name AS username,
    u.user_id,
    u.user_registration AS registration_date,
    COUNT(*) AS edit_count
FROM recentchanges rc
JOIN actor a ON rc.rc_actor = a.actor_id
JOIN user u ON a.actor_user = u.user_id
WHERE rc.rc_bot = 0  
AND rc.rc_timestamp >= DATE_FORMAT(NOW() - INTERVAL 3 MONTH, '%Y%m%d%H%i%s')
GROUP BY a.actor_name, u.user_id, u.user_registration
ORDER BY edit_count DESC
LIMIT 10;
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...