I have a table which is
table A
|noid |
|ab123bs |
|a22a |
|cc123cc |
I want to find '123' in that table
I have tried mysql:
SELECT * FROM table A WHERE '123' LIKE '%noid%' -not working
I also have tried mysql
SELECT * FROM table A WHERE '123' LIKE concat('%',noid,'%') -not working
where 'noid' like '%123%'