Eman-RazUSN Price
    Updated 2023-04-13
    with tab1 as (select max(price_usd) as "Maximum Price"
    from near.core.fact_prices
    where symbol='USN'),

    tab2 as (select min(price_usd) as "Minimum Price"
    from near.core.fact_prices
    where symbol='USN'),

    tab3 as (select price_usd as "Current Price"
    from near.core.fact_prices
    where symbol='USN'
    order by timestamp DESC
    limit 1)
    select * from tab1, tab2, tab3
    Run a query to Download Data