tsvector_to_array()

将 tsvector 转换为词素的函数

tsvector_to_array() 是一个用于将 tsvector 转换为词素数组的系统函数。

tsvector_to_array()PostgreSQL 9.6 中添加。

用法

tsvector_to_array ( tsvector ) → text[]

变更历史

示例

tsvector_to_array() 的基本用法示例

postgres=# SELECT tsvector_to_array(to_tsvector('foo a bar is bar bar is foo boo'));
 tsvector_to_array 
-------------------
 {bar,boo,foo}
(1 row)

分类

数组全文搜索

参见

array_to_tsvector()

反馈

提交关于 "tsvector_to_array()" 的任何评论、建议或更正 此处