SQL
AخA
select COUNT(
select 1 from logging l2 where l2.log_type="newusers"
and l2.log_actor = l1.log_actor
and l2.log_timestamp > l1.log_timestamp
and l2.log_timestamp < l1.log_timestamp+1000000
) as log_action_count from logging l1 join actor on actor_id=log_actor
where l1.log_type="newusers" and actor_name != replace(log_title,"_"," ")
and log_action_count > 4 limit 1;
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.