Hi there,
Here is my problem. For example I have a table Products that contain a field Name:
Products
ID | Name | ..
1 | "USB Key 10Go"
2 | "Intel computer"
3 | "12 inches laptop computer"
...
I'm currently implementing a simple search engine (SQL Server and ASP .NET, C#) for an iPhone web-app and I would like to use the SOUNDEX() SQL Server function.
The thing is I can't directly use SOUNDEX on the Name field (this would be irrelevant since there are several words in the name), I would like to apply the SOUNDEX function to each word from the Name field, and then see if one of them match the researched keyword.
If someone have any clue how to do this, that would be awesome :)
Regards,
Charles