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
Matěj Suchánek
.
1) Total number of thanks, users who thanked and who were thanked. 2) Most thanking users 3) Most thanked users 4) Most thanking users by target.
Toggle Highlighting
SQL
USE cswiki_p; SELECT log_user_text, COUNT(*) FROM logging WHERE log_action = "thank" GROUP BY log_user_text ORDER BY COUNT(*) DESC LIMIT 20; SELECT log_title, COUNT(*) FROM logging WHERE log_action = "thank" GROUP BY log_title ORDER BY COUNT(*) DESC LIMIT 20; SELECT log_user_text, log_title, COUNT(*) FROM logging WHERE log_action = "thank" GROUP BY log_user_text, log_title ORDER BY COUNT(*) DESC LIMIT 10; SELECT user_name, COUNT(thx1.log_user_text) + COUNT(thx2.log_title) AS total FROM user LEFT JOIN (SELECT * FROM logging WHERE log_action = "thank") AS thx1 ON thx1.log_title = user_name LEFT JOIN (SELECT * FROM logging WHERE log_action = "thank") AS thx2 ON thx2.log_user_text = user_name GROUP BY user_name ORDER BY total 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...