![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello, in our application it would be very helpful, if the search wouldn't return only exact matches, but also similar items, e.g. search for "models" returns also "model" search for "exmaple" returns also "example" search for "dl365" returns also "dl385" How can I do this with Oracle? Is there any extension I have to install? Or is there a function like the function to match regular expressions? Regards Marten |
#3
| |||
| |||
|
|
Hello, in our application it would be very helpful, if the search wouldn't return only exact matches, but also similar items, e.g. search for "models" returns also "model" search for "exmaple" returns also "example" search for "dl365" returns also "dl385" How can I do this with Oracle? Is there any extension I have to install? Or is there a function like the function to match regular expressions? Regards Marten |
#4
| |||
| |||
|
|
Hello, in our application it would be very helpful, if the search wouldn't return only exact matches, but also similar items, e.g. search for "models" returns also "model" search for "exmaple" returns also "example" search for "dl365" returns also "dl385" How can I do this with Oracle? Is there any extension I have to install? Or is there a function like the function to match regular expressions? Regards Marten |
#5
| |||
| |||
|
|
Hello, in our application it would be very helpful, if the search wouldn't return only exact matches, but also similar items, e.g. search for "models" returns also "model" search for "exmaple" returns also "example" search for "dl365" returns also "dl385" How can I do this with Oracle? Is there any extension I have to install? Or is there a function like the function to match regular expressions? Regards Marten |
#6
| |||
| |||
|
|
SQL> select id from texts where contains(content,'fuzzy(models)') > 0; ID ---------- 1 |
#7
| |||
| |||
|
|
SQL> select id from texts where contains(content,'fuzzy(models)') > 0; ID ---------- 1 |
#8
| |||
| |||
|
|
SQL> select id from texts where contains(content,'fuzzy(models)') > 0; ID ---------- 1 |
#9
| |||
| |||
|
|
SQL> select id from texts where contains(content,'fuzzy(models)') > 0; ID ---------- 1 |
![]() |
| Thread Tools | |
| Display Modes | |
| |