You should choose the neutral-word-breaker if you have a column that has different language (especially western and non-western languages together) in it.
There are some other options such as
- Seperating the columns by each language (as @Tony stated)
- if your data is a plain text; converting it to the xml data type and add language tags that indicate the language which is used by the full text engine.
- developing a custom word breaker (Although it is not a optimal solution)
Here is an article about best practices for choosing a language when creating a Full-Text index.
Added After Comments
It can be queried multiple columns in many ways depending on your use case. The easiest way is using the CONTAINS predicate to query multiple columns by specifying a list of columns to search as shown below;
SELECT Name, Color FROM Production.Product
WHERE CONTAINS((Name, Color), 'Red');
Another solution may be using a language indicator column that can be used in the CASE/IF statements which helps you conditionally split the query by language. You can also use the DATALENGTH() TSQL function to check whether it is empty and decide which column to choose.