SELECT * FROM 'mytable' WHERE INSTR('mycol', 'abc') > 0
The above example return all rows in table “mytable” where the column “mycol” contains the string “abc”.
SELECT * FROM 'mytable' WHERE INSTR('mycol', 'abc') > 0
The above example return all rows in table “mytable” where the column “mycol” contains the string “abc”.