hkeyformidable-silver
Updated 2025-01-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
WITH first_list AS (
SELECT DISTINCT value AS users
FROM eclipse.core.fact_transactions,
LATERAL FLATTEN(INPUT => SIGNERS) AS value
),
second_list AS (
SELECT DISTINCT signer AS users
FROM solana.core.ez_signers
)
SELECT first_list.users
FROM first_list
INNER JOIN second_list
ON first_list.users = second_list.users;
QueryRunArchived: QueryRun has been archived