SQL
x
-- 2221092
-- SELECT rev_page FROM revision WHERE rev_id=263989
SELECT rev.
rev_actor as actor_id
-- , count(rev_actor) as `edits_num`, sum(rev_len) as `total_len`
, rev.rev_len
, parent.rev_len as parent_len
FROM revision_userindex rev
left join revision parent on rev.rev_parent_id = parent.rev_id
WHERE rev.rev_page=2221092 AND rev.rev_minor_edit=0 AND rev.rev_id<=263989
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.