SQL
AخA
WITH raw(log_actor, log_timestamp, cnt) AS
(
SELECT log_actor, LEFT(log_timestamp, 8), COUNT(*)
FROM logging
WHERE log_type = 'create'
AND log_namespace = 0
AND log_timestamp >= '2025'
GROUP BY log_actor, LEFT(log_timestamp, 8)
HAVING COUNT(*) >= 50
)
SELECT actor_name, log_timestamp, cnt
FROM raw
JOIN actor_logging ON actor_id = log_actor
ORDER BY cnt DESC;
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.