farid-c9j0VMsushi price over the time
    Updated 2022-06-30
    SELECT
    date_trunc('day', hour) as day,
    avg(price) as sushi_price
    FROM ethereum.token_prices_hourly
    WHERE symbol = 'SUSHI' and day >='2022-01-01'
    GROUP BY 1
    Run a query to Download Data