SQL
x
select count(*) as "count" from logging
where log_type like "block"
and MONTH(log_timestamp) in (9,10) and YEAR(log_timestamp) = 2023;
select * from logging
where log_type like "block"
and MONTH(log_timestamp) in (9,10) and YEAR(log_timestamp) = 2023;
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.