Re: Full Text fuzzy search

Поиск
Список
Период
Сортировка
От Najib Abi Fadel
Тема Re: Full Text fuzzy search
Дата
Msg-id 20060928075707.60086.qmail@web38305.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на Full Text fuzzy search  (Michael Vodep <mvodep@gmx.net>)
Ответы Re: Full Text fuzzy search  (Teodor Sigaev <teodor@sigaev.ru>)
Список pgsql-general

for PostgreSQL, Postgresql, postgresql u can use ilike:
example: select * from table where name ilike 'postgresql'
U can even try:
select * from table where name ilike '%postgresql%'
the '%' is for any set of caracters (like * when u are doing a shell commande)

For the others (bostgresql, posdgresql, bosdgresql) i think u should write a function, that's what we did in our application.

HTH

Najib.
Michael Vodep <mvodep@gmx.net> wrote:
Hi

How can i do a full text fuzzy search with PgSQL?

For example: i got a text domain. I search for Postgresql
He should return a result for 'Postgresql' if i enter following values:
PostgreSQL, Postgresql, postgresql
but also
bostgresql, posdgresql, bosdgresql

Is this possible?

Regrads
michael

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend


Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail.

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

Предыдущее
От: Teodor Sigaev
Дата:
Сообщение: Re: Full Text fuzzy search
Следующее
От: Teodor Sigaev
Дата:
Сообщение: Re: Full Text fuzzy search