LIKE not working as expected
When searching for values containing a backslash, MySQL is not finding the rows as expected. Here's an example:
create table t (c varchar(50)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
insert into t values ('test\\test');
select * from t where c like '%\\\\test' escape '\\';
No rows are returned.
Changing the number of escaped backslashes in the "like" expression doesn't help. This is on MySQL 5.1.73 on RedHat.
Subject
Views
Written By
Posted
LIKE not working as expected
974
April 18, 2020 08:37PM
455
April 18, 2020 09:14PM
449
April 19, 2020 12:27AM
449
April 19, 2020 10:38AM
521
April 23, 2020 07:13PM
434
April 27, 2020 08:13AM
383
April 27, 2020 11:02AM
434
April 27, 2020 12:00PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.