Skip to content

Commit

Permalink
Fix typo in lab4
Browse files Browse the repository at this point in the history
  • Loading branch information
stumelius authored Mar 16, 2022
1 parent d11346b commit 65993c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labs/lab4.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Using a window function, add a column `days_since_last_order` to the `orders` mo
```sql
datediff('day', lag(ordered_at) over (partition by customer_id order by ordered_at), ordered_at)
```
(2) Execute `dbt run -s order` to make sure your model runs successfully.
(2) Execute `dbt run -s orders` to make sure your model runs successfully.
</details>

### 2. Filter out employees from the orders and customers models
Expand Down

0 comments on commit 65993c6

Please sign in to comment.