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
Teibit
.
For each wiki user we want to see how many edits they've done in an IAL and in any of the top Wikipedia languages.
Toggle Highlighting
SQL
SELECT * FROM ( SELECT simple_rev.rev_user AS User_ID, COUNT(simple_rev.rev_user) AS Contributions_in_Simple_English FROM simplewiki_p.revision AS simple_rev GROUP BY User_ID LIMIT 3 ) A LEFT OUTER JOIN ( SELECT vo_rev.rev_user AS User_ID, COUNT(vo_rev.rev_user) AS Contributions_in_Volapük FROM vowiki_p.revision AS vo_rev GROUP BY User_ID LIMIT 3 ) B USING (User_ID) LEFT OUTER JOIN ( SELECT ie_rev.rev_user AS User_ID, COUNT(ie_rev.rev_user) AS Contributions_in_Interlingue FROM iewiki_p.revision AS ie_rev GROUP BY User_ID LIMIT 3 ) C USING (User_ID);
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...