freemartianETH Versus CRV Price
    Updated 2022-11-23
    with ETH as (
    select
    hour,
    avg(price) as asset_price
    from ethereum.core.fact_hourly_token_prices
    where symbol = 'WETH'
    and hour >= '2022-11-20'
    group by hour),

    CRV as (
    select
    hour,
    avg(price) as asset_price
    from ethereum.core.fact_hourly_token_prices
    where symbol = 'CRV'
    and hour >= '2022-11-20'
    group by hour
    )

    select ETH.hour, CRV.asset_price as crv, ETH.asset_price as eth
    from CRV inner join ETH on CRV.hour = ETH.hour
    Run a query to Download Data