Based on my researches, it is related with Full-Text Index Stop-list option, one of the main properties of Full-Text Index.
If you set this option to "System", all keywords included in "System Stop list" will not be available for your CONTAINS()
clauses and unfortunately there will be no result sets for such cases.
Solution;
To set this option to "OFF" which will bypass the stop list check in your language set.
For example you in English, sen in Turkish. These are marked as stop words and will make sense for SQL Server Engine to be excluded in such searches, unless you set "system" option. So, do not use "System" option.
To do this, pls run the following script on db which your table exists:
ALTER FULLTEXT INDEX ON table_name SET STOPLIST = OFF
To create your own stop list. In this case, you can define your special stop words and can create specific stop lists. So that, only these ones will be treated as they will not make any sense for SQL Server Engine.
Once you create it, you can start using this by running the following scripts:
CREATE FULLTEXT STOPLIST myStoplist
GO
ALTER FULLTEXT STOPLIST [myStoplist] ADD 'you' LANGUAGE 'English'
GO
ALTER FULLTEXT INDEX ON table_name SET STOPLIST = [myStoplist]
GO
I hope this helps:)
Good luck...