Search a full text index for 'c#'
        Posted  
        
            by KKirk
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by KKirk
        
        
        
        Published on 2010-05-31T13:38:38Z
        Indexed on 
            2010/05/31
            13:43 UTC
        
        
        Read the original article
        Hit count: 117
        
sql-server
|freetexttable
Hi
I have a table (lets say it has one column called 'colLanguage') that contains a list of skills and has a full text index defined on it. One of the entries in the table is 'c#' but when I search for 'c#' (using the following SQL) I get no results back.
select *
from
FREETEXTTABLE(tblList, colLanguage, 'c#')
Can anyone help?
Thanks K
© Stack Overflow or respective owner