Skip to content
Advertisement

Why is the `LIKE` operator not working with integer columns?

I’m trying to receive some ids from my database for an autocomplete search on my CAKEPHP 3.3 site. But my problem is that its only returning the id if I type in the exact id and not part of it.

Here is my function to search the data. The name variable is what is being passed from input.

For example there is a id in the table ‘5254’ and I type in part of the id ’52’ nothing is returned but when I type in the whole id ‘5254’ the id is returned. enter image description here

enter image description here

I’m unsure why this is the case because in my sql query i’m using the percent sign to say any characters after what has been typed into the input.

Here is part of my table enter image description here

SQL debug when 52 is entered.

Advertisement

Answer

The id column is of type INTEGER, and therefore the value is being bound as such, as can be seen in your Query dump, it says 'type' => 'integer'. Being bound as an integer will cause it to be casted, and you’ll end up with a comparison against 52 only.

You can workaround that by telling the query builder to treat the column as a string type. This can be done via the second argument ($types) of the query builders *where() methods:

See also

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement