SQL Server 2008 FullTextSearch Single Character in Name Missing from Results
问题 I have a full text indexed column in SQL Server 2008 which has the following rows: W Smithers, Wilda Smithers, W2 Smithers When I run the following query I only get back Wilda Smithers and W2 Smithers. SELECT FT_TBL.full_name as results FROM dbo.ft_table AS FT_TBL WITH (NOLOCK) INNER JOIN CONTAINSTABLE (ft_table , full_name, '("w*" AND "smither*")',12) AS KEY_TBL ON FT_TBL.ft_key_id = KEY_TBL.[KEY] ORDER BY KEY_TBL.RANK desc Any suggestions on how to tweak this so W Smithers is also in my