MySQL Forums
Forum List  »  Newbie

Re: Assistance with selecting backslash slash combination
Posted by: Peter Brawley
Date: July 08, 2015 03:21PM

drop table if exists t;
create table t(c char(32));
insert into t values('http:\\/\\/site.domain.com');
select * from t;
+--------------------------+
| c                        |
+--------------------------+
| http:\/\/site.domain.com |
+--------------------------+
select c from t where c='http:\\/\\/site.domain.com';
+--------------------------+
| c                        |
+--------------------------+
| http:\/\/site.domain.com |
+--------------------------+

So it seems your plugin is the source of the problem.

Options: ReplyQuote


Subject
Written By
Posted
Re: Assistance with selecting backslash slash combination
July 08, 2015 03:21PM


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.