SQL
AخA
USE fawiki_p;
SELECT rev_user_text, COUNT(rev_comment) cnt
FROM revision JOIN page ON rev_page=page_id
WHERE page_namespace = 0
AND (
rev_comment LIKE '%خنثی•سازی_ویرایش_%_توسط%'
OR rev_comment LIKE '%آخرین_تغییر_متن_رد_شد%و_برگردانده_شد_به_نسخهٔ%'
OR rev_comment LIKE '%تغییر_آخر_متن_رد_شد%و_برگردانده_شد_به_نسخهٔ%'
OR rev_comment LIKE '%خنثی•سازی%وپ:توینکل%'
OR rev_comment LIKE '%خنثی•سازی%وپ:تل%'
OR rev_comment LIKE '%برگردانده%وپ:توینکل%'
OR rev_comment LIKE '%برگردانده%وپ:تل%'
OR rev_comment LIKE '%برگرداندن%([[وپ:هاگ|هاگ]])%'
OR rev_comment LIKE 'ویرایش%به_آخرین_تغییری_که%انجام_داده_بود_واگردانده_شد'
)
AND NOW() - INTERVAL 24 HOUR <rev_timestamp group by rev_user_text ORDER BY cnt 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.