Near matches not found in CONTAINSTABLE
问题 I am using SQL Server 2008 DDL CREATE TABLE [dbo].[t]( [words] [varchar](1000) NULL, [id] [int] IDENTITY(1,1) NOT NULL ) ON [PRIMARY] DML insert into t(words)values('this is my laptop') insert into t(words)values('this does not contains headphone') SQL Query SELECT * FROM t as t JOIN CONTAINSTABLE(t, words,'"headphone*"', 10) fulltextSearch ON t.Id = fulltextSearch.[KEY] Results No record found I am expecting one records. Any Idea? 回答1: 'this' is very likely a noise word (like 'the', 'and',