Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
ShadowCipher02
.
This query retrieves the article titles and the number of edits they've received, helping you identify the most edited articles on the Telugu Wikipedia. You can adjust the LIMIT value to get more or fewer results based on your needs.
Toggle Highlighting
SQL
SELECT CONCAT('https://te.wikipedia.org/wiki/', REPLACE(page.page_title, ' ', '_')) AS Article_Link, page.page_title AS Article_Title, COUNT(revision.rev_id) AS Edit_Count FROM revision JOIN page ON revision.rev_page = page.page_id WHERE page.page_namespace = 0 -- Namespace 0 corresponds to articles GROUP BY page.page_title ORDER BY Edit_Count DESC LIMIT 100;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...