Eman-RazUntitled Query
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with tab1 as (
select PROPOSER
,TX_ID
,min(BLOCK_TIMESTAMP)as min_date
,max(BLOCK_TIMESTAMP)as last_date
from flow.core.fact_transactions
where BLOCK_TIMESTAMP>='2022-01-01'
group by 1,2),
tab2 as (
select TX_SENDER
,TX_GROUP_ID
,min(BLOCK_TIMESTAMP)as min_date
,max(BLOCK_TIMESTAMP)as last_date
from algorand.core.fact_transaction
where BLOCK_TIMESTAMP>='2022-01-01'
group by 1,2),
tab3 as (
select FROM_ADDRESS
,TX_HASH
,min(BLOCK_TIMESTAMP)as min_date
,max(BLOCK_TIMESTAMP)as last_date
from avalanche.core.fact_transactions
where BLOCK_TIMESTAMP>='2022-01-01'
group by 1,2),
tab4 as (
select FROM_ADDRESS
,TX_HASH
,min(BLOCK_TIMESTAMP)as min_date
,max(BLOCK_TIMESTAMP)as last_date
from bsc.core.fact_transactions
where BLOCK_TIMESTAMP>='2022-01-01'
group by 1,2),
tab5 as (
select TX_FROM
,TX_ID
,min(BLOCK_TIMESTAMP)as min_date
Run a query to Download Data