diff --git a/docs/reference/bqtools/functions/automation.md b/docs/reference/bqtools/functions/automation.md index b0cda81..b7d24aa 100644 --- a/docs/reference/bqtools/functions/automation.md +++ b/docs/reference/bqtools/functions/automation.md @@ -80,11 +80,21 @@ _**Dependencies**_ | `bqtools.[region].parse_resource_id`, `bqtools.[region].get SET execution_options = JSON '{"execution_mode": "incremental", "replace_additional_date_partitions": 4}'; ``` - === "Date Range" + === "Full Date Range" ```sql SET execution_options = JSON '{"execution_mode": "date_range", "start_date": "2024-01-01", "end_date": "2024-01-31"}'; ``` + === "Start Date Range" + ```sql + SET execution_options = JSON '{"execution_mode": "date_range", "end_date": "2024-01-31"}'; + ``` + + === "End Date Range" + ```sql + SET execution_options = JSON '{"execution_mode": "date_range", "start_date": "2024-01-01"}'; + ``` + ??? note "DESTINATION TABLE OPTIONS"