Updated 2022-11-07
    with tab1 as
    (
    SELECT ADDRESS
    from ethereum.core.dim_labels
    where (ADDRESS_NAME ilike '%Alameda%' or label ilike '%Alameda%')
    )
    SELECT *
    from ethereum.core.ez_current_balances A, tab1 B
    where B.address = A.USER_ADDRESS
    LIMIT 10


    Run a query to Download Data