From Model

What does it do?

It allows you to reference the output of another model in your Flow, bringing you composition capabilities without a headache.

How to use it?

You simply use it by dragging and dropping any previously created Model (SQL or Flow) in the View Selector.

Note: A model cannot reference itself

How to configure it?

There are no configuration option for this step.

Rendered SQL

If the model is not materialized in your warehouse:

SELECT * FROM (<IMPORTED MODEL SQL>)

If the model is materialized in your warehouse as a view or a table we run:

SELECT * FROM database.schema.table

Last updated