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
Post a Comment