Fork of Edit size 3 (Subquery hackery) by Krinkle
This query is marked as a draft This query has been published by Chaduvari.

SQL

AخA
 
SELECT
  page_title,
  r.rev_id,
  actor_name,
  r.rev_timestamp,
  r.rev_len,
  (SELECT CAST(r.rev_len as signed) - CAST(rp.rev_len as signed) AS _rp_diff FROM revision rp WHERE rp.rev_id = r.rev_parent_id) AS _diff
FROM revision_userindex r
JOIN actor ON actor_id = r.rev_actor
JOIN page ON page_id = r.rev_page
WHERE actor_name = 'Chaduvari'
-- AND page_namespace = 0
HAVING ((_diff IS NULL AND rev_len > 500) OR _diff > 500)
ORDER BY r.rev_timestamp ASC
LIMIT 100
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.

Checking query status...