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

SQL

AخA
 
SELECT IF(rc_comment LIKE "%added to category%", "added", "removed") AS type, 
       Substring(rc_timestamp, 1, 8)                                 AS day, 
       rc_timestamp, 
       page_title, 
       rc_user_text, 
       rc_comment 
FROM   recentchanges 
       JOIN page 
         ON page_id = rc_cur_id 
WHERE  rc_type = 6 
       AND rc_title = "Pending_AfC_submissions" 
       AND rc_namespace = 14 
ORDER  BY 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...