您知道为什么SOUNDEX不能将 NUMBERS 用作字符串的一些解释吗?
这些查询工作正常:
select 1 from dual
where soundex('for you') = soundex('for u')
;
select 1 from dual
where soundex('for you') = soundex('for you')
;
但是这个没有:
select 1 from dual
where soundex('6000') = soundex('6000')
;
select 1 from dual
where soundex('5') = soundex('5')
;
我正在阅读文档http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions167.htm#SQLRF06109但没有提到一些有用的。