I want to run a query like this in MySQL:
select * from table where column1 like '%searchdata%'
But I want to use a parameter to pass in the search text. Is this possible? This doesn't seem to work:
select * from table where column1 like '%?Parameter%'