Topic
Which is the correct syntax for referencing variables in a SQL Query
For example is it:
@workflowname "Exact workflow name"
or this
@workflowname= 'Exact workflow name'
For example is it:
@workflowname "Exact workflow name"
or this
@workflowname= 'Exact workflow name'
Instructions
The correct example is to declare the variable and to set the value of the variable i.e
@workflowname= 'Exact workflow name'
@workflowname= 'Exact workflow name'
