nsa2000eco13
Updated 2023-02-12
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
a.hour::date as date,
case
when date >= '2023-01-01' then 'price'
end as new_year,
avg (a.price) as ETH_Price
from ethereum.core.fact_hourly_token_prices a join ethereum.core.fact_transactions b on a.HOUR::date=b.BLOCK_TIMESTAMP::date
where a.symbol = 'WETH'
and date>='2023-01-01'
group by 1,2
order by 1
Run a query to Download Data