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

SQL

AخA
 
USE arwiki_p;
SELECT
  article.page_title,
  COUNT(*) AS edits
FROM revision
JOIN actor ON actor_id = rev_actor
INNER JOIN page article ON 
    article.page_id = rev_page AND
    article.page_namespace = 0 AND
    article.page_is_redirect = 1
    AND actor_name LIKE 'Mhsohaib'
GROUP BY article.page_id
ORDER BY edits 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...