This query is marked as a draft This query has been published by Slaporte.

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 categorylinks AS cl
         ON rc.rc_cur_id = cl.cl_from
         WHERE cl.cl_to = 'Library_science'
         AND rc.rc_timestamp >= DATE_SUB(NOW(), INTERVAL 2 HOUR)
         ORDER BY rc.rc_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.

Checking query status...