SQL
AخA
# biographies I have edited in the last 3 months
SELECT DISTINCT article.page_title
FROM page as talk JOIN
page as article ON article.page_title = talk.page_title
JOIN revision ON rev_page = article.page_id
INNER JOIN templatelinks ON tl_from = talk.page_id
WHERE rev_actor = 42036 #actor_id:42036 actor_user:120801 actor_name:Vexations
AND rev_timestamp BETWEEN (NOW() - INTERVAL 30 DAY ) AND NOW()
AND article.page_namespace = 0
AND talk.page_namespace = 1
AND tl_title = "WikiProject Biography"
LIMIT 10
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.