SQL
AخA
SELECT rev_user_text, rev_comment, rev_timestamp
FROM revision
LEFT JOIN user ON revision.rev_user = user.user_id
WHERE (user.user_id IS NULL OR user.user_rights NOT LIKE '%autoconfirmed%')
AND rev_comment LIKE '%I swear to god%'
AND rev_timestamp >= DATE_FORMAT(NOW() - INTERVAL 2 YEAR, '%Y%m%d%H%i%s')
ORDER BY rev_timestamp DESC;
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.