mboveiriLido 5
Updated 2022-09-05
9
1
2
3
4
›
⌄
select 'Max' as type,'1' as rank, max(amount) from ethereum.core.ez_eth_transfers where eth_to_address = lower('0xae7ab96520de3a18e5e111b5eaab095312d7fe84') UNION
select 'Avereage' as type,'2' as rank, avg(amount) from ethereum.core.ez_eth_transfers where eth_to_address = lower('0xae7ab96520de3a18e5e111b5eaab095312d7fe84') UNION
select 'Median' as type,'3' as rank, median(amount) from ethereum.core.ez_eth_transfers where eth_to_address = lower('0xae7ab96520de3a18e5e111b5eaab095312d7fe84') UNION
select 'Min' as type,'4' as rank, min(to_varchar(amount , 'TM9')) from ethereum.core.ez_eth_transfers where eth_to_address = lower('0xae7ab96520de3a18e5e111b5eaab095312d7fe84')
Run a query to Download Data