elenahooTotal borrower and amount per token
    Updated 2021-11-29
    select symbol
    , count(borrower_address) as borrower_count
    , sum(borrowed_tokens) borrowed_tokens
    , sum(borrowed_usd) borrowed_usd
    from aave.borrows
    where borrowed_usd is not null
    --and block_timestamp::date>current_date-30
    group by symbol
    order by borrower_count desc

    --where block_timestamp::date>current_date-30
    Run a query to Download Data