Re: how collation and character set works
Posted by:
Rick James
Date: April 10, 2011 12:07AM
It is not a trivial undertaking to create a new collation. The online documents can probably tell you more than you can get from this forum.
It would be better to write remove the extra characters in Perl/PHP/Java code before inserting the strings into the table. You should probably create two columns -- one with the real text (this-is-a-text), one with the string to use for comparing (thisisatext) and index the latter one.
What do you mean by "8-bit"? "latin1" is an 8-bit code. But it is quite different from the 8-bit "utf8". They sort and compare differently. Perhaps "ascii" is the only 7-bit character set.
If all you want to do is to ignore '-', then the REPLACE function could be used:
select col from tbl where REPLACE(col, '-', '')='thisisatext';
Subject
Views
Written By
Posted
4897
April 08, 2011 04:26PM
1486
April 09, 2011 08:53AM
Re: how collation and character set works
1858
April 10, 2011 12:07AM
1966
April 10, 2011 12:15PM
1635
April 10, 2011 01:19PM
1601
April 14, 2011 11:45AM
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.