Re: ts_tovector() to_query() - Mailing list pgsql-general

From hubert depesz lubaczewski
Subject Re: ts_tovector() to_query()
Date
Msg-id 20130329115831.GB3171@depesz.com
Whole thread Raw
In response to ts_tovector() to_query()  ("Severn, Chris" <chris_severn@chernay.com>)
Responses Re: ts_tovector() to_query()
List pgsql-general
On Thu, Mar 28, 2013 at 08:50:50PM +0000, Severn, Chris wrote:
> 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'

Based on the criteria above, I would say that:
SELECT m.* FROM movies m WHERE to_tsvector(m.item_title) @@ to_tsquery('Robocop')

will do what you need, since "dvd" and "collection" are irrelevant for
the results.

Best regards,

depesz

--
The best thing about modern society is how easy it is to avoid contact with it.
                                                             http://depesz.com/


pgsql-general by date:

Previous
From: aasat
Date:
Subject: Re: UNLOGGED TEMPORARY tables?
Next
From: "Severn, Chris"
Date:
Subject: Re: ts_tovector() to_query()