{% if order %}
INSERT INTO orders (id, amount, user_id, created_at)
VALUES (
'{% uuid %}',
{{ order.amount | floatformat:2 }},
'{{ user.id }}',
{% if order.created_at %}
'{{ order.created_at }}'
{% else %}
'{% now "2006-01-02 15:04:05" %}'
{% endif %}
);
{% endif %}

Running operation is only one of the data
engineering components.
Invincible ETL / ELT
Extract, Transform, and Load any kind of data across any kind of systems with confidence.
Databases operations
Load & Transform data within multiple SQL databases leveraging the native dialect of each one.
Databases migrations
Version, run, rollback, and discard migrations across multiple SQL databases.