SQL Contains() not returning results for 'The'
问题 I have SQL script as below for querying my ContactInfoes table SELECT * FROM ContactInfoes WHERE CONTAINS(Name, 'The') I am getting only empty result set. I have an entry in my table with Name 'The Company'. Why I am not getting any data here and how this can be resolved. Any help is appreciated. I am using SQL Server 2019 回答1: You have created FULLTEXT index without specifying STOPLIST. Thus, the default STOPLIST was used. By default the word 'the' is the stop word, that removed from your