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
Cryptic
.
Users with at least 25 non-redirect mainspace creations in a given calendar day. This examines pages by their current status: whether they exist and are a nonredirect and in mainspace *now*, rather than whether they were at creation. Disambiguation pages, set index articles, and list articles are also not filtered out. For [[Wikipedia talk:Arbitration Committee/Requests for comment/Article creation at scale#Comments by Cryptic]], in response to a question by [[User:WhatamIdoing]] in [[#Proposed solution 15: Clear definitions]], circa 5 September 2022.
Toggle Highlighting
SQL
SELECT actor_name, CAST(LEFT(log_timestamp, 8) AS DATE) AS `date`, COUNT(*) FROM logging_logindex JOIN actor_logging ON actor_id = log_actor JOIN page ON page_id = log_page WHERE log_type = 'create' AND log_timestamp >= '20180627' -- the date of the first creation log AND page_namespace = 0 AND page_is_redirect = 0 GROUP BY actor_name, LEFT(log_timestamp, 8) HAVING COUNT(*) >= 25;
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...