Jinja
Apparence
Description
- dynamic SQL generation
- automation
- reusability
- scalable data transformation
Variables
| Fichier:Sql.svg | select *
from table1
where column1 = {{ var('variable1', 10) }}
|
Conditionals
Loops
Macros
| Fichier:Sql.svg | {% macro macro1(argument1, argument2) %}
select {{ argument2 }}
from {{ argument1 }}
{% endmacro %}
|