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 focuses on articles related to fashion trends and identifies those with the highest number of revisions. You can adjust the LIMIT value to retrieve more or fewer results based on your interests.
Toggle Highlighting
SQL
SELECT page.page_title AS Article_Title, COUNT(revision.rev_id) AS Revision_Count FROM revision JOIN page ON revision.rev_page = page.page_id JOIN categorylinks ON page.page_id = categorylinks.cl_from WHERE page.page_namespace = 0 -- Namespace 0 corresponds to articles AND categorylinks.cl_to = 'Fashion' -- Specify the "Fashion Trends" category on English Wikipedia GROUP BY page_title ORDER BY Revision_Count DESC 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
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...