goanji6455stETH vs. ETH
Updated 2022-04-14
9
1
2
3
4
5
6
7
8
9
›
⌄
with et as (select hour,price as ETH_price from ethereum.token_prices_hourly_v2
where symbol = 'STETH' and hour >'2020-12-23'
order by 2),
stet as (select hour,price as stETH_price from ethereum.token_prices_hourly_v2
where symbol = 'ETH' and hour >'2020-12-23'
order by 2)
select et.hour,et.ETH_price,stet.stETH_price from et inner join stet where et.hour=stet.HOUR
order by hour
Run a query to Download Data