Hi Team,
I want search results that includes Single quote as well irrespective of its position in the query. Example
If My search word is(input) "Sundaris" then I need to get list
(output)Sun'daris, Sundari's, Sundaris, S'undaris.....
Please help me to get this query.
Here is temptable created for your quick reference
CREATE TABLE #TempTable(Name nvarchar(40))
INSERT INTO #TempTable (Name)
VALUES
('Sundari'),
('Sundari''s'),
('S''un''daris'),
('Su''ndaris'),
('Sundaris'),
('Sni''gda'),
('Sniga'),
('S''ni''gda')
Sundari