flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
teract4
Moe
teract4
Updated 2023-02-01
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
with
b
as
(
select
TX_SENDER
,
count
(
*
)
as
n
from
terra
.
core
.
fact_transactions
group
by
1
)
select
case
when
n
=
1
then
'never came back'
when
n
>
1
then
' came back'
end
as
type
,
count
(
TX_SENDER
)
from
b
group
by
1
Results
Run a query to Download Data