messarisolana_txn_type
Updated 2023-04-08
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
›
⌄
⌄
⌄
select
*
from
solana.core.fact_transactions
limit
10;
select
tx_id,
value
from
solana.core.fact_transactions,
table (flatten(instructions)) as f
where
solana.core.fact_transactions = f."$1"
limit
10;
SELECT
id,
value
FROM
my_table,
TABLE (FLATTEN(array_column)) as f
WHERE
my_table.id = f."$1";
Run a query to Download Data