【发布时间】:2017-06-12 09:31:31
【问题描述】:
基本上,我希望能够为这样的查询获得完全匹配(包括标签):
=#SELECT to_tsvector('english', '#adoption');
to_tsvector
-------------
'adopt':1
相反,我想查看以# 开头的单词:
=#SELECT to_tsvector('english', '#adoption');
to_tsvector
-------------
'#adoption':1
这可以通过 psql 全文搜索实现吗?
【问题讨论】:
标签: postgresql full-text-search stemming