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
RiazACU
.
Toggle Highlighting
SQL
USE bnwiki_p; -- Re-format wikitable: `(\d+)\.0\|\|(\S[^|]+)` -- Replace: `$1 || [[User:$2|$2]] ` SELECT actor_name, patrol_count , patrol_count_i as patrol_count_intial , (patrol_count + patrol_count_i) as patrol_count_total FROM -- next patrols ( SELECT actor_name, patrol_count, IFNULL(patrol_count_i, 0) as patrol_count_i FROM ( SELECT count(*) as patrol_count, log_actor FROM logging_logindex WHERE log_type = 'patrol' AND log_action = 'patrol' GROUP BY log_actor ) r_next -- add initial patrol LEFT JOIN ( SELECT count(*) as patrol_count_i, log_actor as log_actor_i FROM logging_logindex WHERE log_type = 'patrol' AND log_action = 'patrol-i' GROUP BY log_actor ) r_initial ON log_actor_i = log_actor -- actor_name LEFT JOIN actor_logging a ON actor_id = log_actor ) top_patrollers ORDER BY patrol_count DESC, patrol_count_i DESC
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...