数据库信息:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production
"CORE 11.2.0.3.0 Production"
TNS for Linux: Version 11.2.0.3.0 - Production
NLSRTL Version 11.2.0.3.0 - Production
设置:
CREATE TABLE my_contains_test(
USERID VARCHAR2(8) NOT NULL,
SEARCH VARCHAR2(40),
CONSTRAINT contains_test_pk PRIMARY KEY (USERID)
);
INSERT ALL
INTO my_contains_test VALUES ('HUNTERW','Willie Hunter')
INTO my_contains_test VALUES ('HUWU','Will Hu')
SELECT * FROM dual;
create index ind_contains_test on my_contains_test(search) indextype is ctxsys.context;
询问:
select m.*, contains(search, 'will% and hu%', 1) as c_result from my_contains_test m;
结果:
USERID SEARCH C_RESULT
HUNTERW Willie Hunter 4
HUWU Will Hu 0
这是第二条记录(C_RESULT == 0)的好结果吗?我不知道发生了什么。
这是好的部分。将名称更改为不同的名称,例如Willie
toBillie
和Will
to Bill
,查询到:
select m.*, contains(search, 'bill% and hu%', 1) as c_result from my_contains_test m;
结果是正确的:
USERID SEARCH C_RESULT
HUNTERW Billie Hunter 4
HUWU Bill Hu 4
因此,改变一个位置会使其工作方式不同。我不知道那是怎么回事。如何解决它的任何想法都会很棒。