SQL
AخA
SELECT actor_name, user_editcount, rev_minor_edit, REPLACE(page_title, '_', ' ') AS page_name, comment_text
FROM revision
JOIN page ON page_id = rev_page
JOIN actor_revision ON actor_id = rev_actor
LEFT JOIN user ON user_id = actor_user
LEFT JOIN comment_revision ON comment_id = rev_comment_id
WHERE rev_timestamp BETWEEN '20221105' AND '20221106'
AND page_namespace = 0;
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.