What is the difference between Fuzzy and Stemming requests in MsSql? Can you give examples of requests? For example on some resources write an example of Fuzzy using FREETEXT
SELECT * FROM my_table WHERE FREETEXT(my_column, 'my search', LANGUAGE) And on other resources using FREETEXT describe Stemming .
So what is the difference between them and how to implement them?