SQL
x
SELECT actor_name, ctd_name, COUNT(*) AS rev_count, MIN(rev_timestamp) AS min_rev_time, MAX(rev_timestamp) AS max_rev_time
FROM change_tag_def
JOIN change_tag ON ( ctd_id = ct_tag_id )
JOIN revision ON ( ct_rev_id=rev_id )
JOIN actor ON ( rev_actor = actor_id )
WHERE ctd_name LIKE 'proofreadpage-quality%'
AND actor_name = 'Samwilson'
GROUP BY ctd_id
;
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.