Hello everyone,
Suppose I have a table with 2 fields, ID and TEXT. If I want to do a fuzzy search for the word "market", for example, for a table that has values as below, I want the output to be
marketting
marketing
marketable
marketability
market
markit
(even an output without marketting is perfectly alright).
ID | TEXT |
---|---|
1 | running |
2 | run |
3 | ran |
4 | raining |
5 | playing |
6 | marketting |
7 | marketing |
8 | marketable |
9 | marketability |
10 | market |
11 | markit |
At present, I am using the following query, and am getting only market and markit as output:
SELECT * FROM "TEMP"
WHERE CONTAINS ("TEXT", 'market', FUZZY (0.8));
Could you please tell me how I would go about stemming before fuzzy searching in SAP HANA?