Skip to content

Commit

Permalink
Fix Ref Date Spine
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunny77D committed Nov 28, 2024
1 parent bb72c5f commit 6be686d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions models/staging/ref_finance/core/ez_ref_finance_metrics.sql
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ select
p.token_turnover_circulating,
p.token_turnover_fdv,
p.token_volume
from fees_revs_tvl f
left join price p on f.date = p.date
left join dau_txns_volume d on d.date = f.date
from dau_txns_volume d
left join price p on d.date = p.date
left join fees_revs_tvl f on d.date = f.date
where d.date < to_date(sysdate())

0 comments on commit 6be686d

Please sign in to comment.