MySQL Forums
Forum List  »  InnoDB

Re: LIKE not working as expected
Posted by: Robert Simpson
Date: April 27, 2020 11:02AM

No, but you _would_ expect

select * from data WHERE stringValue like '%\\\\%' escape '\\';

in my example to produce a positive result, for the same reason that this does:

select "Thor\\'s Hammer" like '%\\\\%' escape '\\';
+---------------------------------------------+
| "Thor\\'s Hammer" like '%\\\\%' escape '\\' |
+---------------------------------------------+
|                                           1 |
+---------------------------------------------+

Options: ReplyQuote


Subject
Views
Written By
Posted
784
April 18, 2020 08:37PM
372
April 18, 2020 09:14PM
360
April 19, 2020 10:38AM
353
April 27, 2020 08:13AM
Re: LIKE not working as expected
315
April 27, 2020 11:02AM


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.