tsvector_to_array()
是一个用于将 tsvector
转换为词素数组的系统函数。
tsvector_to_array()
在 PostgreSQL 9.6 中添加。
示例
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)
参考文献
- PostgreSQL 文档: 文本搜索函数