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

SQL

AخA
 
SELECT P.page_title, 
  CONCAT("https://uk.wiktionary.org/wiki/", P.page_title) AS page_link, 
  COUNT(1) AS revisions, MAX(R.rev_timestamp) AS latest
FROM ukwiktionary_p.page P JOIN ukwiktionary_p.revision R
  ON P.page_id=R.rev_page
WHERE R.rev_user=0 AND R.rev_user_text!="MediaWiki default"
GROUP BY P.page_title
ORDER BY latest 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...