Wildcard in SQL query with input param
I need to make a SQL query in Thingworx. The query should read (if I were creating it directly):
SELECT * FROM MyDB.MyTable where Name like '%Name_Input%'
Another PTC forum post had recommended this as a possible solution:
SELECT * FROM MyDB.MyTable where Name like '%' || [[Name_Input]] || '%'
But this query (above) does not work. The post was from the year 2014 and I'm currently using 8.4.1, so I'm guessing that's the issue.....
Solutions anyone?

