select block_timestamp, liquidated_amount_usd, debt_to_cover_amount_usd, liquidator, borrower, collateral_token_symbol, debt_token_symbol from aave.liquidations
where liquidated_amount_usd > 0
and block_timestamp > getdate() - interval'365 days'
order by liquidated_amount_usd desc
limit 10