I have a mysql table which has data in column 1
, and data is S01E01
.
When I run:
select * from tableName where "column 1" like "S%"
it works properly, but when I run:
select * from tablename where "column 1" like "S0%"
it doesn't work (returns empty set).
I think it occurs when I insert a number in double quotes.
what is problem and how to solve it?