I'm trying to run this query - SELECT count (*) FROM [WorkflowTotals01] where [E1] like '%wfname%'
The wfname is a variable that's populated from another list. We need to use a like command, but am unable to figure out how to use like with a variable.
wfnameas variable. If in sql then please mention the which DBMS because it changes for each one of them like in sql server you can dolike '%'+@wfname+'%'. If in the code then concatenate the string with variable.wfname?