Re: Question about fulltext search and to_tsvector function

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Question about fulltext search and to_tsvector function
Дата
Msg-id 7565.1224214645@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Question about fulltext search and to_tsvector function  (Mike Christensen <imaudi@comcast.net>)
Ответы Re: Question about fulltext search and to_tsvector function
Список pgsql-general
Mike Christensen <imaudi@comcast.net> writes:
> Okay this one's driving me crazy.
> Should there be any difference between the following queries:

> SELECT R.Title FROM Recipes R
> WHERE (to_tsvector('english', title || description) @@
> plainto_tsquery('Cake'));

> and

> SELECT R.Title FROM Recipes R
> WHERE (to_tsvector('english', description || title) @@
> plainto_tsquery('Cake'));

Maybe it would be better to do description || ' ' || title ?
I suspect that 'Cake' is getting run together with some other
word in some of your rows ...

            regards, tom lane

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

Предыдущее
От: "Scott Marlowe"
Дата:
Сообщение: Re: Question about NOT NULL and default values.
Следующее
От: "Scott Marlowe"
Дата:
Сообщение: Re: Question about NOT NULL and default values.