sql server - I dont get all rows with the contain function -
i have varchar(max) , create full text index. use query:
select * mytable contains(field, '68396.68403.');
but have 1 result, row has value "68396.68403". have more rows "68396.68403.xxxx", "68396.68403.yyy", etc. don't result. contais "68396.68403.".
what problem?
i using sql server 2014 express , stopword using "system".
if stopword have query:
select stopword sys.fulltext_stopwords
i don't have row.
thank much.
try using prefix:
select * mytable contains(field, '68396.68403.*');
Comments
Post a Comment