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
Muhammed taha
.
Toggle Highlighting
SQL
with userInfo as (select user_id As uid, user_name As uname, user_registration as uregdate, user_editcount as ueditcount from user), pageArt as (SELECT actor.actor_id COUNT(revision.rev_actor) AS acticle FROM revision INNER JOIN page ON page.page_id = revision.rev_page JOIN actor ON revision.rev_actor = actor.actor_id WHERE page.page_is_redirect = 0 AND page.page_namespace = 0 AND revision.rev_parent_id = 0 GROUP BY revision.rev_actor) select userInfo.uid, userInfo.uname as UserName, cast(userInfo.uregdate as date) as Registration, userInfo.ueditcount, pageArt.aticle as Editcount from userInfo order by Editcount desc limit 25
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...