0-MIDDaily borrow Amount(USD) By Token
    Updated 2022-10-04
    select BLOCK_TIMESTAMP::date as date,BORROWS_CONTRACT_SYMBOL as token,sum(LOAN_AMOUNT_USD)as borrow_amount
    from ethereum.compound.ez_borrows
    where date>='2020-05-05'
    group by 1,2
    Run a query to Download Data