dbt - Incremental Models
Given this dbt incremental model SQL snippet:
What is the main purpose of this WHERE clause?
SELECT
id,
event_date,
data_value
FROM source_table
WHERE event_date >= (SELECT MAX(event_date) FROM {{ this }})What is the main purpose of this WHERE clause?
