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
19645
February 14, 2011 09:48AM
4563
February 16, 2011 01:03AM
3657
February 21, 2011 08:17AM
3233
February 23, 2011 04:06PM
2938
February 23, 2011 05:21PM
2984
February 23, 2011 10:14PM
4507
February 17, 2011 06:34PM
3530
February 21, 2011 07:49AM
2569
February 27, 2011 11:43AM
Re: Searching/inserting certain Unicode characters
2557
February 27, 2011 01:14PM
3061
March 06, 2011 01:48PM
Sorry, you can't reply to this topic. It has been closed.
This forum is currently read only. You can not log in or make any changes. This is a temporary situation.
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.