flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Transaction activity by day of the week
maymoth55
Transaction activity by day of the week
Updated 2024-09-17
Copy Reference
Fork
9
1
2
3
4
5
6
›
⌄
SELECT
EXTRACT
(
DOW
FROM
BLOCK_TIMESTAMP
)
AS
day_of_week
,
COUNT
(
TX_ID
)
AS
transaction_count
FROM
solana
.
defi
.
fact_swaps_jupiter_summary
WHERE
BLOCK_TIMESTAMP
BETWEEN
'2024-09-01'
AND
'2024-09-30'
GROUP
BY
day_of_week
ORDER
BY
transaction_count
DESC
;
Results
QueryRunArchived: QueryRun has been archived