I have added a filter expression using the like operator. What do I put in the value field? my parameter is named @test and I\'d like the filter to function as a like %@te
you could use this simple query.
WHERE fieldname LIKE CONCAT('%',@test,'%')
Used CONCAT