Skip to content

Commit 5e0ea83

Browse files
authored
Merge pull request #24650 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 3ef9e63 + f99386b commit 5e0ea83

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/relational-databases/search/full-text-search.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ A full-text index includes one or more character-based columns in a table. These
5959
```sql
6060
SELECT product_id
6161
FROM products
62-
WHERE CONTAINS(product_description, "Snap Happy 100EZ" OR FORMSOF(THESAURUS,'Snap Happy') OR '100EZ')
62+
WHERE CONTAINS(product_description, '"Snap Happy 100EZ"' OR FORMSOF(THESAURUS,'"Snap Happy"') OR '100EZ')
6363
AND product_cost < 200 ;
6464
```
6565

@@ -68,7 +68,7 @@ A full-text index includes one or more character-based columns in a table. These
6868
```sql
6969
SELECT candidate_name,SSN
7070
FROM candidates
71-
WHERE CONTAINS(candidate_resume,"SQL Server") AND candidate_division = 'DBA';
71+
WHERE CONTAINS(candidate_resume, '"SQL Server"') AND candidate_division = 'DBA';
7272
```
7373

7474
For more information, see [Query with Full-Text Search](../../relational-databases/search/query-with-full-text-search.md).

0 commit comments

Comments
 (0)