SQL
x
use tawikisource_p;
SET @w:=0;
SELECT distinct page_title as Title, actor_name as user, comment_text as comment
FROM revision
join page ON page_id = rev_page
join comment on comment_id = rev_comment_id
join actor ON rev_actor = actor_id where
(comment_text like "%மெய்ப்புப் பார்க்கப்பட்டவை%" or comment_text like "%Proofread%")
#(comment_text like "%சரிபார்க்கப்பட்டது%" or comment_text like "%Validated%")
and rev_page IN (select page_id from page where page_title like "கம்பன்_கவித்_திரட்டு_4,_5,_6.pdf/%")
and actor_name = "தாட்சாயனி"
#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.