postgresql提供两种数据类型用于支持全文检索:tsvector类型产生一个文档(以优化全文检索形式)和tsquery类型用于查询检索。

tsvector的值是一个无重复的lexemes排序列表(什么是lexemes?),比如将一个字符串转换为tsvector类型:

test=# SELECT $$the lexeme ' ' contains spaces$$::tsvector;
tsvector
----------------------------------------
' ' 'contains' 'lexeme' 'spaces' 'the'
(1 row)

可以在单词后面跟:数字表示单词在字符串中的位置,数字的范围是1-16383。

test=# SELECT $$a:1 fat:2 cat:3 sat:4 on:5 a:6 mat:7 and:8 ate:9 a:10 fat:11 rat:12$$::tsvector;
tsvector
-------------------------------------------------------------------------------
'a':1,6,10 'and':8 'ate':9 'cat':3 'fat':2,11 'mat':7 'on':5 'rat':12 'sat':4
(1 row)

还可以在位置后面跟字母标识权,字母的范围是A,B,C,D,默认是D,不显示。

test=# SELECT $$a:1A fat:2B,4C cat:5D$$::tsvector;
tsvector
----------------------------
'a':1A 'cat':5 'fat':2B,4C
(1 row)

tsquery存储用于检索的词汇,并且使用布尔操作符&(AND),|(OR),!(NOT)来组合它们。!(NOT)结合的最紧密,而&(AND)结合的比|(OR)紧密,也可以用括号来强调分组。

test=# SELECT $$fat & rat$$::tsquery;
tsquery
---------------
'fat' & 'rat'
(1 row) test=#
test=# SELECT $$fat & (rat | cat)$$::tsquery;
tsquery
---------------------------
'fat' & ( 'rat' | 'cat' )
(1 row) test=#
test=# SELECT $$fat & rat & ! cat$$::tsquery;
tsquery
------------------------
'fat' & 'rat' & !'cat'
(1 row)

tsquery中的词汇可以用*进行标记来指定前缀匹配:

test=# SELECT to_tsvector('postgraduate');
to_tsvector
---------------
'postgradu':1
(1 row) test=# SELECT to_tsquery( 'postgres:*');
to_tsquery
------------
'postgr':*
(1 row) test=# SELECT to_tsvector('postgraduate') @@ to_tsquery( 'postgres:*');
?column?
----------
t
(1 row)

为什么呢???我也没明白,继续往下看吧!

文本检索函数和操作符

操作符

操作符 返回类型 描述 示例 结果
@@ boolean tsvector是否匹配tsquery select to_tsvector('fat cats ate rats') @@ to_tsquery('cat & rat'); t
@@@ boolean 废弃的@@    
|| tsvector 连接tsvector select 'a:1 b:2'::tsvector || 'c:1 d:2 b:3'::tsvector; 'a':1 'b':2,5 'c':3 'd':4
&& tsquery tsquery与 select 'fat | rat'::tsquery && 'cat'::tsquery; ( 'fat' | 'rat' ) & 'cat'
|| tsquery tsquery或 select 'fat | rat'::tsquery || 'cat'::tsquery; 'fat' | 'rat' | 'cat'
!! tsquery tsquery非 select !! 'cat'::tsquery; !'cat'
<-> tsquery tsquery紧跟tsquery select to_tsquery('fat') <-> to_tsquery('rat'); 'fat' <-> 'rat'
@> boolean tsquery包含另一个tsquery select 'cat'::tsquery @> 'cat & rat'::tsquery; f
<@ boolean tsquery是否包含于另一个tsquery select 'cat'::tsquery <@ 'cat & rat'::tsquery; t

函数

函数 返回类型 描述 示例 结果
array_to_tsvector(text[]) tsvector 将text数组转换成tsvector select array_to_tsvector('{fat,cat,rat}'::text[]); 'fat' 'cat' 'rat'
get_current_ts_config() regconfig 获取当前文本检索配置 select get_current_ts_config(); english
length(tsvector) integer tsvector中单词个数 select length('fat:2,4 cat:3 rat:5A'::tsvector); 3
numnode(tsquery) integer tsquery中的单词加上操作符的数量 select numnode('(fat & rat) | cat'::tsquery); 5
plainto_tsquery([ config regconfig , ] query text) tsquery 忽略标点(punctuation)生成tsquery select plainto_tsquery('english', 'The Fat Rats'); 'fat' & 'rat'
phraseto_tsquery([ config regconfig , ] query text) tsquery 忽略标点(punctuation)生成tsquery用于检索短语 select phraseto_tsquery('english', 'The Fat Rats'); 'fat' <-> 'rat'
querytree(query tsquery) text 获取tsquery可索引部分 select querytree('foo & ! bar'::tsquery); 'foo'
setweight(vector tsvectorweight "char") tsvector 给tsvector每一个元素赋权 select setweight('fat:2,4 cat:3 rat:5B'::tsvector, 'A'); 'cat':3A 'fat':2A,4A 'rat':5A
setweight(vector tsvectorweight "char"lexemestext[]) tsvector 给tsvector给指定元素赋权 select setweight('fat:2,4 cat:3 rat:5B'::tsvector, 'A', '{cat,rat}'); 'cat':3A 'fat':2,4 'rat':5A
strip(tsvector) tsvector 删除tsvector中的位置和权 select strip('fat:2,4 cat:3 rat:5A'::tsvector); 'cat' 'fat' 'rat'
to_tsquery([ config regconfig , ] query text) tsquery 标准化单词并转换为tsquery select to_tsquery('english', 'The & Fat & Rats'); 'fat' & 'rat'
to_tsvector([ config regconfig , ] document text) tsvector 减少文本至tsvector select to_tsvector('english', 'The Fat Rats'); 'fat':2 'rat':3
ts_delete(vector tsvectorlexeme text) tsvector 从tsvector中删除指定元素 select ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, 'fat'); 'cat':3 'rat':5A
ts_delete(vector tsvectorlexemes text[]) tsvector 从tsvector中删除指定的一组元素 select ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, ARRAY['fat','rat']); 'cat':3
ts_filter(vector tsvectorweights "char"[]) tsvector 只查询指定权值的元素 select ts_filter('fat:2,4 cat:3b rat:5A'::tsvector, '{a,b}'); 'cat':3B 'rat':5A

ts_headline([ config regconfig, ] document text,

querytsquery [, options text ])

text 显示一个查询匹配项 select ts_headline('x y z', 'z'::tsquery); x y <b>z</b>

ts_rank([ weights float4[], ] vector tsvector,

querytsquery [, normalization integer ])

float4 为查询进行文档排序 select ts_rank('fat:2,4 cat:3b rat:5A'::tsvector, 'rat'::tsquery); 0.607927

ts_rank_cd([ weights float4[], ] vector tsvector,

querytsquery [, normalization integer ])

float4 使用覆盖密度为查询进行文档排序 select ts_rank_cd('{0.1, 0.2, 0.4, 1.0}','fat:2,4 cat:3b rat:5A'::tsvector, 'rat'::tsquery); 1

ts_rewrite(query tsquerytarget tsquery,

substitute tsquery)

tsquery 使用 substitute替换target中query select ts_rewrite('a & b'::tsquery, 'a'::tsquery, 'foo|bar'::tsquery); 'b' & ( 'foo' | 'bar' )
ts_rewrite(query tsqueryselect text) tsquery 从SELECT结果中得到的substitute和target来替换query,前提是SELECT必须要有结果 SELECT ts_rewrite('a & b'::tsquery, 'SELECT t,s FROM aliases')  
tsquery_phrase(query1 tsqueryquery2 tsquery) tsquery 功能同操作符 <->  select tsquery_phrase(to_tsquery('fat'), to_tsquery('cat')); 'fat' <-> 'cat'

tsquery_phrase(query1 tsqueryquery2 tsquery,

distanceinteger)

tsquery 确保query1和query2之间距离最大为distance select tsquery_phrase(to_tsquery('fat'), to_tsquery('cat'), 10); 'fat' <10> 'cat'
tsvector_to_array(tsvector) text[] 将tsvector转换为数组 select tsvector_to_array('fat:2,4 cat:3 rat:5A'::tsvector); {cat,fat,rat}
tsvector_update_trigger() trigger 更新tsvector列自动触发触发器函数    
tsvector_update_trigger_column() trigger 同上    
unnest(tsvector, OUT lexeme text, OUT positionssmallint[], OUT weights text) setof record 将tsvector扩展成行类型 select unnest('fat:2,4 cat:3 rat:5A'::tsvector);

(cat,{3},{D})
(fat,"{2,4}","{D,D}")
(rat,{5},{A})

工作中没有用过文本检索类型,英语也不好,有兴趣还是去看原版吧:

https://www.postgresql.org/docs/9.6/static/functions-textsearch.html

postgresql----文本搜索类型和检索函数的更多相关文章

  1. PostgreSQL 的字段类型和表操作笔记

    字段类型 数值类型 Name Storage Size Description Range smallint 2 bytes small-range integer -32768 to +32767 ...

  2. PostgreSQL 基本数据类型及常用SQL 函数操作

    数据类型 名字 别名 描述 bigint int8 有符号的8字节整数 bigserial serial8 自动增长的8字节整数 bit [ (n) ]   定长位串 bit varying [ (n ...

  3. MySQL(十)操纵表及全文本搜索

    一.创建表 MySQL不仅用于表数据操作,还可以用来执行数据库和表的所有操作,包括表本身的创建和处理. 创建表一般有如下两种方式: ①使用具有交互式创建和管理表的工具: ②直接使用MySQL语句操纵表 ...

  4. PostgreSQL各数据类型的内置函数

    参考<PostgreSQL实战> 3.1.2 数字类型操作符和数学函数 PostgreSQL 支持数字类型操作符和丰富的数学函数 例如支持加.减.乘.除.模取取余操作符 SELECT 1+ ...

  5. 《mysql必知必会》笔记2(子查询、联接、组合查询、全文本搜索)

    十四:使用子查询 1:子查询是嵌套在其他查询中的查询. 2:需要列出订购TNT2的所有客户信息,需要下面几步: a:从orderitems表中检索出包含物品TNT2的所有订单号: b:根据上一步得出的 ...

  6. eclipse 设置文本模板中 insert variable... 函数 详解

    设置文本模板简要图: 设置文本模板详细过程:http://www.cnblogs.com/lsy131479/p/8478711.html 此处引出设置文本模板中 insert variable... ...

  7. Nebula 基于 ElasticSearch 的全文搜索引擎的文本搜索

    本文首发于 Nebula Graph 公众号 NebulaGraphCommunity,Follow 看大厂图数据库技术实践. 1 背景 Nebula 2.0 中已经支持了基于外部全文搜索引擎的文本查 ...

  8. PostgreSQL Array 数组类型与 FreeSql 打出一套【组合拳】

    前言 PostgreSQL 是世界公认的功能最强大的开源数据库,除了基础数据类型 int4/int8/varchar/numeric/timestamp 等数据类型,还支持 int4[]/int8[] ...

  9. 介绍一个很爽的 php 字符串特定检索函数---strpos()

    大家在用 php 开发的时候 是否 有遇到过,对于一个获取的字符串,如果想要特定检测它是否 含有某个特定的字符或者子字符串,总是找不到好方法,或者根本做不到,迫于无奈而使用foreach. 函数: s ...

随机推荐

  1. mysql数据库中,如何对json数据类型的值进行修改?通过json_set函数对json字段值进行修改?

    需求描述: 今天在看mysql中存放json数据类型的问题,对于json数据进行修改的操作, 在此记录下. 操作过程: 1.创建包含json数据类型的表,插入基础数据 mysql> create ...

  2. 深入理解css3中的flex-grow、flex-shrink、flex-basis

    https://www.cnblogs.com/ghfjj/p/6529733.html

  3. iphone弹出窗口效果的制作(Core animation, CALayer)

    效果类似人人网微薄客户端的弹出效果 static CGFloat kTransitionDuration = 0.3; - (void)initView { UIWindow *window = [U ...

  4. 【笔试面试】神马搜索C++程序猿电话面试

    面试时间:2015.07.15 预约时间:2015.07.14.电话面试前一天,会电话咨询你方面电话面试的时间. 面试环节: 无自我介绍(这是我面试这么多家公司碰到的第一次),直接面试内容. 问题1: ...

  5. matlab矩阵内存预分配

    matlab矩阵内存预分配就意味着,划定一个固定的内存块,各数据可直接按"行.列指数"存放到对应的元素中.若矩阵中不预配置内存.则随着"行.列指数"的变大.MA ...

  6. Hibernate的Configuration和SessionFactiory

    Configuration: Configuration是hibernate的入口,负责管理Hibernate的配置信息,这些配置信息都是从配置文件hibernate.cfg.xml或者Hiberna ...

  7. Git Step by Step – (2) 本地Repo

    前面一篇文章简单介绍了Git,并前在Windows平台上搭建了Git环境,现在就正式的Git使用了. Git基本概念 在开始Git的使用之前,需要先介绍一些概念,通过这些概念对Git有些基本的认识,这 ...

  8. xml文件的序列化示例

    1.创建activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/andr ...

  9. Hadoop集群三种作业调度算法介绍

    Hadoop集群中有三种作业调度算法,分别为FIFO,公平调度算法和计算能力调度算法 先来先服务(FIFO) Hadoop中默认的调度器FIFO,它先按照作业的优先级高低,再按照到达时间的先后选择被执 ...

  10. Linux怎样创建FTP服务器--修改用户默认目录

    在创建FTP服务器之有先命令: ps -ef |grep vsftpd 查一下系统有没有安装vsftpd这个服务器,如果出现如下图所示的界面说明没有安装.     然后再执行:yum install ...