SQL
AخA
WITH items as (
SELECT rev_id, rev_page, comment_text, rev_actor, rev_timestamp, rev_minor_edit, rev_deleted
FROM revision
LEFT JOIN comment_logging ON rev_comment_id = comment_id
LEFT JOIN actor_logging ON rev_actor = actor_id
)
SELECT
t1.rev_page AS Article,
DATE_FORMAT(t1.rev_timestamp, '%Y-%m-%d') AS Date,
t1.comment_text AS Edit summary,
t1.rev_actor AS Editor
FROM items t1
WHERE rev_page =16317734
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.