I would like to do the following query but it fails.
select * from table where field like '%?%'
where ? is the parameter
The problem is that when the parameter is in quotes Spring can't see it and complains about missing parameters.
How would I do this query?


Reply With Quote