SQL
AخA
SELECT rc.rc_id,
rc.rc_cur_id,
rc.rc_title,
rc.rc_timestamp,
rc.rc_this_oldid,
rc.rc_last_oldid,
rc.rc_user_text,
rc.rc_old_len,
rc.rc_new_len,
rc.rc_comment
FROM recentchanges AS rc
INNER JOIN page AS mainspace_p
ON rc.rc_cur_id = mainspace_p.page_id
INNER JOIN page as p
on p.page_title = mainspace_p.page_title
and mainspace_p.page_namespace = 0
INNER JOIN categorylinks AS cl
ON p.page_id = cl.cl_from
WHERE cl.cl_to = 'WikiProject_Biography_articles'
AND rc.rc_type = 0
AND rc.rc_timestamp >= DATE_SUB(NOW(),
INTERVAL 2 HOUR)
ORDER BY rc.rc_id DESC
LIMIT 1
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.