I'm fairly new to full text indexing, my query works as expected, until I search using a phrase containing ' n '.
Example:
SELECT C.name FROM dbo.Clients AS C
INNER JOIN
CONTAINSTABLE (dbo.Clients, name, '"Brick n Clay*"') AS K
ON C.ID = K.[KEY]
This query returns nothing, but a LIKE statement on that same table for that same phrase does.
Does the ' n ' character have any significance for full text searches? Is there a workaround?