data-dwh-dbt-project/macros/tests/is_first_day_of_month.sql
2024-12-17 19:09:54 +01:00

3 lines
144 B
SQL

{% test is_first_day_of_month(model, column_name) %}
select * from {{ model }} where extract(day from {{ column_name }}) != 1
{% endtest %}