The above answer does not work in SQL Server 2008 if your string is for a single digit.
It works:
SELECT partdescription FROM table WHERE CONTAINS(partdescription, '10') AND decision LIKE '%10"%'
This does not work:
SELECT partdescription FROM table WHERE CONTAINS(partdescription, '6') AND decision LIKE '%6"%''
EDIT: An explanation of why a single digit cannot be indexed.
If the SYSTEM stop word list (or noise word) is used, it contains each of the numeric digits as words that should be ignored. You can change the contents of the Stop Word list or disable Stop Words altogether.
ALTER FULLTEXT INDEX ON dbo.my_ft_table SET STOPLIST = OFF;
After one of these changes is made, the text must be reindexed before the individual digits become searchable. After reindexing, it will really be possible to find "6".
Jabare
source share