Re: ts_tovector() to_query()

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: ts_tovector() to_query()
Дата
Msg-id 1364505153.95344.YahooMailNeo@web162902.mail.bf1.yahoo.com
обсуждение исходный текст
Ответ на ts_tovector() to_query()  ("Severn, Chris" <chris_severn@chernay.com>)
Ответы Re: ts_tovector() to_query()
Список pgsql-general
"Severn, Chris" <chris_severn@chernay.com> wrote:

> I have a statement that is like this
>
> SELECT m.* FROM movies m
>   WHERE to_tsvector(m.item_title) @@ to_tsquery('Robocop|DVD|Collection')
>
> this works, but it correctly returns all the matching records
> that have any of the query items in them.
>
> What I want to do is return items that have 'Robocop' or 'Robocop
> and DVD' or 'Robocop and Collection' or 'Robocop and DVD and
> collection'
>
> is there an operator for the tsvector / tsquery relationship that
> will do this?  Or am I forced to sift through the results of the
> initial query after the fact?

SELECT m.* FROM movies m
  WHERE to_tsvector(m.item_title) @@ to_tsquery('Robocop & (DVD | Collection)')

--
Kevin Grittner
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


В списке pgsql-general по дате отправления:

Предыдущее
От: Jasen Betts
Дата:
Сообщение: Re: Money casting too liberal?
Следующее
От: "D'Arcy J.M. Cain"
Дата:
Сообщение: Re: Money casting too liberal?