T-SQL – Full-Text Search by First Word

full-text-searchsql servert-sql

How can I perform "starts with" logic with full text search?

For example there is a Contains logic :

WHERE contains(Note,' "*word*" ')

I guess I need search by first word in the string, but how can I do it?

Best Answer

WHERE CONTAINS (Note, ' "word*" ' );

Assuming "word" is the word that you are actually searching for.