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

SQL

AخA
 
SET @rev = (SELECT MIN(rev_id)
            FROM revision
            WHERE rev_timestamp > DATE_FORMAT(DATE_ADD(NOW(), INTERVAL -6 MONTH), "%Y%m%d%H%i%s"));
SELECT COUNT(*) AS 'Edits',
    actor_name AS `User`
FROM revision_userindex
JOIN actor_revision ON rev_actor = actor_id
WHERE rev_id >= @rev
and cl_to IN (
   "Images_from_Wiki_Loves_Bangla_2024"
)
GROUP BY `User`
LIMIT 1000;
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...