Is there any way to set variables to before executing snowflake statement
I would like to execute the 2 set variable statements before executing the select * from viewname. This view internally uses VAR1 and VAR2 variables.
set VAR1 = ‘ABC’;
set VAR2 = ‘XYZ’;
Select...