Re: Searching/inserting certain Unicode characters
My point was that I cannot use that in a real-world scenario. With "real-world scenario" I mean normal columns that do not contain only one character. I cannot search for only 0xC2A0 in a real-world search. That won't find me anything.
LIKE '%whatever%' is a real-world search. You can't do it with 0x characters.
You can workaround by using REGEXP. Instead of LIKE you can use
WHERE col REGEXP char(0x00a9)
But you can use it only for searching one char. That defeats the purpose of REGEXP.
Subject
Views
Written By
Posted
18416
February 14, 2011 09:48AM
4345
February 16, 2011 01:03AM
3473
February 21, 2011 08:17AM
3083
February 23, 2011 04:06PM
2794
February 23, 2011 05:21PM
2851
February 23, 2011 10:14PM
4243
February 17, 2011 06:34PM
3343
February 21, 2011 07:49AM
2446
February 27, 2011 11:43AM
Re: Searching/inserting certain Unicode characters
2433
February 27, 2011 01:14PM
2901
March 06, 2011 01:48PM
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.