Fork of wikidata: sysops by promotion date (testing) by MisterSynergy
This query is marked as a draft This query has been published by Geraki.

SQL

x
 
USE elwiki_p;
SELECT
    log_timestamp,
    log_actor,
    log_title,
    log_comment_id,
    log_params,
    log_deleted,
    log_page
FROM
    logging
WHERE
    log_type='rights'
    AND log_title IN (
        SELECT
            REPLACE(user_name, ' ', '_') AS user_title
        FROM
            user LEFT JOIN user_groups ON user_id=ug_user
        WHERE ug_group='sysop'
    )
    AND log_params LIKE '%sysop%'
;
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...