select datediff('minute' , min(block_timestamp), max(block_timestamp))/count(*) , 'before 9-15' from ethereum.core.fact_blocks
where block_timestamp::date < '2022-09-15'
union all
select datediff('minute' , min(block_timestamp), max(block_timestamp))/count(*) , 'after 9-15' from ethereum.core.fact_blocks
where block_timestamp::date >= '2022-09-15'