[Solved] How to match column value from right using PHP and MySQL


You need to use a like and concatenate a wildcard on the column value. Something like:

select * from table where ? like concat('%', mobile)

I think will do it.

3

solved How to match column value from right using PHP and MySQL