data-dwh-dbt-project/macros/tests/is_first_day_of_month.sql

4 lines
144 B
MySQL
Raw Normal View History

2024-12-17 19:09:54 +01:00
{% test is_first_day_of_month(model, column_name) %}
select * from {{ model }} where extract(day from {{ column_name }}) != 1
{% endtest %}