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
19863
February 14, 2011 09:48AM
4593
February 16, 2011 01:03AM
3681
February 21, 2011 08:17AM
3259
February 23, 2011 04:06PM
2964
February 23, 2011 05:21PM
3004
February 23, 2011 10:14PM
4543
February 17, 2011 06:34PM
3585
February 21, 2011 07:49AM
2589
February 27, 2011 11:43AM
Re: Searching/inserting certain Unicode characters
2574
February 27, 2011 01:14PM
3084
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.