hi there,
I’m trying to run a “dbt run” command while passing a parameter (number of rows to return from a select query) to my .SQL file in model.
The command looks like "dbt run -mypara 100
Then in the SQL:
select * from table {if mypara !=‘’} limit mypara {endif}
Is it possible do that using default dbt? Thanks.