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
Swagoel
.
Toggle Highlighting
SQL
use kowiki_p; select A.user_name as Username, A.num_edits as Edits, B.num_thanks as Thanks from (select user_name, user_editcount as num_edits from user) as A right join (select log_user_text, count(log_user_text) as num_thanks from logging_userindex where log_action = 'thank' and log_type='thanks' and log_timestamp >= timestamp('2018-05-01') and log_timestamp < timestamp('2018-06-01') group by log_user_text limit 5000) as B on A.user_name = B.log_user_text order by A.num_edits; /* I want to take every person who has sent a thank in the last month and I want to know how many thanks they sent as well as how many edits they have made (ever, as opposed to previously when I was comparing the edits for the month), and I want them ordered from smallest to largest number of edits */
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...