Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 802623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:38:05+00:00 2026-05-14T23:38:05+00:00

How do you escape a double quote character inside a MS SQL ‘contains’ function?

  • 0

How do you escape a double quote character inside a MS SQL ‘contains’ function?

SELECT decision
FROM table 
WHERE CONTAINS(decision, '34" AND wide')

Normally contains() expects double quotes to surround an exact phrase to match, but I want to search for an actual double quote character. I’ve tried escaping it with \, `, and even another double quote, but none of that has worked.

P.S. I realize a simple example like this could also be done using the LIKE statement, but I need to use the fulltext search function. The query I provided here has been simplified from my actual query for example purposes.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:38:06+00:00Added an answer on May 14, 2026 at 11:38 pm

    From documentation:

    Punctuation is ignored. Therefore, CONTAINS(testing, "computer failure") matches a row with the value, “Where is my computer? Failure to find it would be expensive.”

    Since FULLTEXT does not even index the punctuation, you’ll need to fine-filter your results using LIKE:

    SELECT  decision
    FROM    table 
    WHERE   CONTAINS(decision, '34 AND wide')
            AND decision LIKE '%34"%'
    

    This will preserve the benefits of fulltext.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I needed to escape a double quote character within a string literal I'd
Is there an escape character for a double quote in xml? I want to
I'm looking for a way to convert a string that contains a character escape
Does someone knows why the mysql_real_escape_string() function adds three backslashes before quotes, or double
If I accidentally double escape a string, can the DB be harmed? For the
When importing a CSV file into Excel, it only strips the double-quotes from the
I have a string in PHP that contains both single and double quotes. I
I am using the default constructor and the default escape character which is backslash.
really simple question... just want to represent double quote without needing to do or
In other words, I have a string like: anything, escaped double-quotes: \, yep anything

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.