SQL
AخA
SELECT
CONCAT('https://centralauth.wikimedia.org/wiki/User:', REPLACE(l.log_title, '@global', '')) AS ca_account_link,
REPLACE(l.log_title, '@global', '') AS log_title,
l.log_type,
l.log_actor,
l.log_action,
l.log_timestamp,
c.comment_text
FROM
logging l
JOIN
comment c ON l.log_comment_id = c.comment_id
WHERE
l.log_type = 'globalauth' AND
l.log_actor = '25051' AND
l.log_action = 'setstatus' AND
c.comment_text LIKE '%T389727%'
ORDER BY
l.log_timestamp 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.