rahoUntitled 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
›
⌄
select * from eth
UNION
select * from arb
UNION
select * from avax
UNION
select * from bsc
UNION
select * from op
UNION
select * from poly
select
eth.create_date,
eth.cur_date,
eth.days_old,
eth.nonce,
eth.from_address
from eth
UNION
select * from arb
arb.create_date,
arb.cur_date,
arb.days_old,
arb.nonce,
arb.from_address
UNION
select * from avax
avax.create_date,
avax.cur_date,
avax.days_old,
avax.nonce,
avax.from_address
UNION
select * from bsc