I am creating a prototype of a data warehouse in SQL Server 2008 R2. The customer wants several key fields put into a single, comma-delimited column, where they can do a key-word search. I have implemented Full Text Searching, but is there a way to search only a specific part of the column? For example, if the column data looks like:
DATA_Column
A,B,C,D,A,E
B,B,D,C,A,G
Is there a way to do a full text search for an "A" that only exists in the 5th position?
Such a query should return the second row in the above example, but NOT the first.