webacyCounts
Updated 2024-12-10
999
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
(SELECT COUNT(*)
FROM (
SELECT address, MAX(MODIFIED_TIMESTAMP)
FROM polygon.core.dim_labels
WHERE label_type = 'cex'
GROUP BY address
) AS polygon_latest) AS polygon_count,
(SELECT COUNT(*)
FROM (
SELECT address, MAX(MODIFIED_TIMESTAMP)
FROM ethereum.core.dim_labels
WHERE label_type = 'cex'
GROUP BY address
) AS ethereum_latest) AS ethereum_count,
(SELECT COUNT(*)
FROM (
SELECT address, MAX(MODIFIED_TIMESTAMP)
FROM arbitrum.core.dim_labels
WHERE label_type = 'cex'
GROUP BY address
) AS arbitrum_latest) AS arbitrum_count,
(SELECT COUNT(*)
FROM (
SELECT address, MAX(MODIFIED_TIMESTAMP)
FROM base.core.dim_labels
WHERE label_type = 'cex'
GROUP BY address
) AS base_latest) AS base_count,
(SELECT COUNT(*)
FROM (
SELECT address, MAX(MODIFIED_TIMESTAMP)
QueryRunArchived: QueryRun has been archived