bachisnapshot6
Updated 2022-08-21
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select proposal_title,
space_id,
datediff ('seconds', proposal_start_time, proposal_end_time ) as duration_sec,
datediff ('minutes', proposal_start_time, proposal_end_time ) as duration_min,
proposal_start_time,
proposal_end_time,
count(*)
from ethereum.core.ez_snapshot
group by 1,2,3,4,5,6
order by 3 asc
--limit 5
Run a query to Download Data