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
Aram
.
Toggle Highlighting
SQL
USE ckbwiki_p; SELECT ROW_NUMBER() OVER (ORDER BY Score DESC) AS Rank, CONCAT('[[User:', actor_name, '|', actor_name, ']]') AS UserName, (ArticleScore + ByteScore) AS Score FROM ( SELECT actor_name, -- Normalize and assign weights to the number of articles and total bytes (COUNT(*) - MIN(CountArticles) OVER ()) / (MAX(CountArticles) OVER () - MIN(CountArticles) OVER ()) AS ArticleScore, (SUM(rev_len) - MIN(TotalBytes) OVER ()) / (MAX(TotalBytes) OVER () - MIN(TotalBytes) OVER ()) AS ByteScore FROM revision JOIN ( SELECT DISTINCT rev_page, MIN(rev_id) AS first_revision_id FROM revision WHERE rev_parent_id = 0 AND rev_timestamp BETWEEN 20090101000000 AND 20231021000000 GROUP BY rev_page ) AS first_revisions ON revision.rev_id = first_revisions.first_revision_id JOIN actor ON actor.actor_id = revision.rev_actor JOIN ( SELECT pl_title FROM pagelinks WHERE pl_from = 157289 AND pl_namespace = 2 ) AS UserPage ON actor_name LIKE UserPage.pl_title WHERE page_namespace = 0 AND page_is_redirect = 0 AND rev_len >= 0 AND ( SELECT COUNT(*) FROM pagelinks WHERE pl_from = page.page_id AND pl_namespace = 0 ) >= 0 GROUP BY actor_name ) AS Scores ORDER BY Rank;
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...