sql - full text view not return result -


i have view full index on fullname. when run

select *  vwpersonsearch  

it returns rows

when run:

select * vwpersonsearch [full name] ='mark rush') 

it returns 1 row

when run:

select *  vwpersonsearch contains([full name],'"mark*" , "rush*"') 

it doesn't return row. why ?

according microsoft documentation(see examples c , d) usage of asterisk indicates searching strings prefixed both terms mark , rush. don't think return anything. try changing this:

select * vwpersonsearch  contains([full name],'"mark*" , "rush"') 

this search strings prefixed mark , contain rush.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -