Я использую PostgreSQL, чтобы найти подходящую строку в статье, используя tsvector
и tsquery
.
Я прочитал руководство PostgreSQL 12.3 Управление текстовым поиском, но ничто не могло помочь мне получить точный вывод, который я хотел.
Запрос:
SELECT ts_headline('english',
'The most common type of search
is to find all documents containing given query terms
and return them in order of their similarity to the
query.',
to_tsquery('query & similarity'),
'StartSel = <, StopSel = >');
вывод ts_headline
The most common type of search
is to find all documents containing given <query> terms
and return them in order of their <similarity> to the
<query>.
Я ищу единственную строку, как указано ниже:
запрос, сходство