Skip to content

Commit

Permalink
Exclude positions on end date during normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
rdgfuentes committed Jul 2, 2024
1 parent c4e2e5b commit 3b4b580
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
FROM
`{{source_table}}`
WHERE
DATE({{source_timestamp_field}}) BETWEEN '{{start_date}}' AND '{{end_date}}'
DATE({{source_timestamp_field}}) >= '{{start_date}}'
AND DATE({{source_timestamp_field}}) < '{{end_date}}'
"""


Expand Down

0 comments on commit 3b4b580

Please sign in to comment.