I need to enable partial match when searching by name. He currently works with Like '%@name%'
, but he's not good enough.
We need to enable input both by name and by name, and both should be partial, so I assume the full text is the way to go.
The problem is that I cannot get it to perform a partial name match. For example, a search for my name (Fedor Hajdu) will work if I type all the parts in full, but not in part (it should match the search for 'fe ha'
, for example.
How can i achieve this? Is it possible to set up a full-text index to make something like a syllable match?
source share