|
|
|
|
|
by dikei
1663 days ago
|
|
In your case, dbt would be the tool to manage your Trino view programmatically: * You define the sql queries that select the input data as models and the dbt scripts (also sql) to combine/manipulate the models. * On running, dbt will generate the Trino SQL queries to join/transform these models into the final result (also a model). * Depending on your configuration, any models can be stored as a Trino view or it can be materialized as a data table that's updated every time you re-run the dbt scripts. |
|