rajsCreate Table Example
Updated 2022-05-31
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
›
⌄
with holders("address", "type") as
(
SELECT *
FROM (VALUES
('0x3e40d73eb977dc6a537af587d48316fee66e9c8c', 'contract'),
('0x09f82ccd6bae2aebe46ba7dd2cf08d87355ac430', 'address'),
('0x695c388153bea0fbe3e1c049c149bad3bc917740', 'contract')
) sub
)
SELECT
address
from holders
-- with holders("address", "type") as values
-- (
-- ('0x3e40d73eb977dc6a537af587d48316fee66e9c8c', 'contract'),
-- ('0x09f82ccd6bae2aebe46ba7dd2cf08d87355ac430', 'address'),
-- ('0x695c388153bea0fbe3e1c049c149bad3bc917740', 'contract')
-- )
-- select
-- *
-- from holders
Run a query to Download Data