Fork of
Finding all moves to Draft: (2020)
by SoWhy
This query is marked as a draft
This query has been published
by SoWhy.
SQL
AخA
SELECT log.log_timestamp AS `time`, act.actor_name AS `user`, log.log_title AS `page`, log.log_params AS `parameters`, cmt.comment_text AS `comment`
FROM logging AS log
LEFT JOIN actor AS act ON log.log_actor = act.actor_id
LEFT JOIN comment AS cmt ON log.log_comment_id = cmt.comment_id
WHERE log.log_type = 'move'
AND log.log_params RLIKE "Draft:"
AND log.log_params NOT RLIKE "Draft:Move/"
AND log.log_namespace = 0
AND cmt.comment_text RLIKE "incubate in draftspace"
ORDER BY log.log_timestamp DESC
LIMIT 10000
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.