Question
SQL Statement Using like [[parameter]]
I am trying to pass an input parameter to a SQL statement using the like command. I cannot figure out how to write the statement using like.
Example
Select * from xxx where column like '%abc%' is what works.
If I pass an input value, how do I structure the statement:
Select * from xxx where column like '%[[parameter]]%' does not work.
Thanks
