Accessing Compiled Code
Learn how to check how dbt compile queries, and which instructions are actually run in the data warehouse.
We'll cover the following...
Compiling code
Sometimes, it’s hard to understand what a templated query does. Let’s take a look at an SQL model:
Press + to interact
select {{3*2}} as id
This model uses Jinja, a templating language ...