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
Gauthammohanraj
.
Toggle Highlighting
SQL
WITH USER_TYPE AS ( select * , case WHEN actor_user is null then 'IP' WHEN actor_user is not null and ug_group = 'bot' then 'Bot' WHEN actor_user is not null and (ug_group != 'bot' or ug_group is null ) then 'User' ELSE 'misc' END as usertype from revision left join actor on actor.actor_id = revision.rev_actor left join user on user.user_id = actor.actor_user left join user_groups on user_groups.ug_user = user.user_id ) select MONTH(rev_timestamp),usertype,COUNT(*) from USER_TYPE GROUP BY usertype , MONTH(rev_timestamp) 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...