I am having a trouble using full text indexing in sql server
Is it possible to search columns which starts with a specific word using full text indexing ??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t anchor your searches like this with full text searches. The best you could do would be to use a
LIKE(which is awful advice) if you want to find specific values at the front of a column like this.