其他分享
首页 > 其他分享> > GBase 8c全文检索-文本匹配

GBase 8c全文检索-文本匹配

作者:互联网

        GBase 8c的全文搜索基于匹配操作符@@,它在一个tsvector(文档)匹配一个tsquery(查询)时返回true。例如:

gbase=# SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery;

 ?column?

----------

 t

(1 row)
gbase=# SELECT 'fat & cow'::tsquery @@ 'a fat cat sat on a mat and ate a fat rat'::tsvector;

 ?column?

----------

 f

(1 row)

        tsquery可以包含搜索术语,并且可以使用 AND 、OR、NOT 以及 FOLLOWED BY 操作符结合多个术语。函数to_tsquery、plainto_tsquery以及phraseto_tsquery可用于将用户书写的文本转换为正确的tsquery。

标签:tsvector,8c,fat,cat,全文检索,rat,SELECT,GBase,tsquery
来源: https://blog.csdn.net/qq_41614765/article/details/122923076