oracle 分词函数,oracle text中的分词表使用

you can do it like this:

sql>begin

ctx_ddl.drop_preference('chinese_lexer');

ctx_ddl.create_preference('chinese_lexer','chinese_vgram_lexer');

end;

/

PL/SQL procedure successfully completed

sql>begin

ctx_ddl.drop_preference('mywordlist');

ctx_ddl.create_preference('mywordlist', 'BASIC_WORDLIST');

ctx_ddl.set_attribute('mywordlist','PREFIX_INDEX','TRUE');

ctx_ddl.set_attribute('mywordlist','SUBSTRING_INDEX', 'YES');

end;

/

PL/SQL procedure successfully completed

SQL> create table te(id int,name varchar2(1000));

Table created

SQL> insert into te values(1,'天鹅湖舞曲(二)');

1 row inserted

SQL> create index te_indx on te(name) indextype is ctxsys.ctxcat parameters('lexer chinese_lexer  wordlist mywordlist');

Index created

SQL> select * from te where catsearch(name,'天鹅',null)>0;

ID NAME

--------------------------------------- --------------------------------------------------------------------------------

1 天鹅湖舞曲(二)

SQL> select * from te where catsearch(name,'天',null)>0;

ID NAME

--------------------------------------- --------------------------------------------------------------------------------

1 天鹅湖舞曲(二)

SQL> select * from te where catsearch(name,'天鹅湖',null)>0;

ID NAME

--------------------------------------- --------------------------------------------------------------------------------

1 天鹅湖舞曲(二)

it is done.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值