sys.dm_fts_parser sql full text
问题 We having a really hard time to figure out two similar strings given to sys.dm_fts_parser gives different results select * from sys.dm_fts_parser('"0 CAD"', 0, null, 0) seems to think that "0 CAD" is one token (returns 2 token) select * from sys.dm_fts_parser('"0 cad"', 0, null, 0) returns 3 tokens - correctly more importantly and even more confusing is why select * from Table where contains(*,"point 5 CAD") works and select * from Table where contains(*,"point 5 cad") fails where the column