Is it possible to use a Prepared Statement in MSSQL (not PDO) placeholder in a LIKE statement in combination with a "%"?
I played a little bit with the code and ended up with this:
WHERE column LIKE ?%
and the parameter is "test1_" so I want to get all results for "test1_%"
But it doesn't work