SQL
AخA
USE zhwiktionary_p;
SELECT rc_id, rc_timestamp, rc_namespace, rc_title, rc_cur_id, page_namespace, page_title
FROM (
SELECT *
FROM recentchanges
WHERE rc_type = 6
AND rc_actor = 127
AND rc_title != "拉丁文"
ORDER BY rc_timestamp DESC
) rc
LEFT JOIN page ON page_id = rc_cur_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.