Searching for Multiple Keywords Without Using ‘AND’ in Full-Text Search with MS SQL

When using full-text search with an MS SQL database, you cannot enter multiple words without using ‘AND’. For example, the following does not work:

In combination with other operators, full-text search with MS SQL also applies a strict ‘AND’ search. Therefore, the following will not work either:

The following expressions will work:

Related Topics