I am trying to query a table with a phrase and get results that fully match my phrase. For example if I search for
WHERE CONTAINS(prc.SectionContent, '"check this"')
I get results that contain the specific words too.
I would like it it behave like a wildcard search such as:
WHERE SectionContent LIKE '%check this%'
which returns results that have the full phrase only.