dbt für Forgeschrittene
Mike Metzger
Data Engineer
.sql-Datei im tests-Verzeichnis
order_total >= subtotalselect *
from order
where order_total < subtotal
assert_order_total_gte_subtotal.sql speichern
ref Funktionselect *
from {{ ref('order') }}
where order_total < subtotal
dbt test --select <testname>dbt für Forgeschrittene