Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
将 CHAR 字符串分解为多个语词,然后返回每个语词及其位置。
sa_char_terms( text [, config_name [, owner ] ] )
text 要分析的 LONG VARCHAR 字符串。
config_name 使用此可选 CHAR(128) 参数指定处理字符串时应用的文本配置对象。缺省值为 'default_char'。
owner 使用此可选的 CHAR(128) 参数指定文本配置对象的所有者。缺省值为 NULL。如果未指定所有者或指定 NULL,则假设当前用户为所有者。
可以使用此系统过程了解应用文本配置对象的设置时,会如何对字符串进行解释。如果想知道索引过程中哪些术语会被删除或者会从查询字符串中删除哪些术语,这一点很有用。
无
以下语句使用缺省 CHAR 文本配置对象 default_char 返回 CHAR 字符串 "It's a work-at-home day!" 中的术语:
CALL sa_char_terms ('It''s a work-at-home day!', 'default_char', 'sys');