SQL
AخA
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.
All SQL code is licensed under CC0 License.