Menu

How to escape a single quote in SQL Server?

Let's look at how to escape a single quote in SQL Server, with a solution that is also reproducible in MySQL

Written by Selva Prabhakaran | 2 min read

Problem

How to escape a single quote in SQL Server, with a solution that is also reproducible in MySQL?

For example, let’s try to replace the single quote character with a hat (^) character.

Input

IDName
1John’s Pizza
2Mary’s Cafe
3Alice’s Diner

Try Hands-On: Fiddle

Create Input Table: Gist

Desired Output

IDEscapedName
1John^s Pizza
2Mary^s Cafe
3Alice^s Diner

Solution:

To escape a single quote in SQL Server, you can use a double single quote (”) to represent a single quote. This is specific to SQL Server.

However, if you want a solution that works in both SQL Server and MySQL, you can use the REPLACE function.

sql
    SELECT ID, REPLACE(Name, '''', '^') AS EscapedName
    FROM ExampleTable;

Explanation:

In this query, we use the REPLACE function to replace each single quote (‘) with two single quotes (”).

In SQL Server, escaping a single quote is done by using two consecutive single quotes (”) to represent a single quote within a string.

In MySQL, you can also escape a single quote using the backslash (). However, to create a solution that works in both SQL Server and MySQL, we used the REPLACE function to replace single quotes with double single quotes (”).

This is because REPLACE is supported in both database systems, making the solution portable across different database platforms.

  1. SQL for Data Science – Level 1
  2. SQL for Data Science – Level 2
  3. SQL for Data Science – Level 3
  1. Introduction to SQL
  2. SQL Window Functons – Made Simple and Easy
  3. SQL Subquery

More SQL Questions

  1. How to efficiently convert rows to columns in SQL?
  2. How to transpose columns to rows in SQL?
  3. How to select first row in each GROUP BY group?
  4. How to get a random row in SQL?.
Free Course
Master Core Python — Your First Step into AI/ML

Build a strong Python foundation with hands-on exercises designed for aspiring Data Scientists and AI/ML Engineers.

Start Free Course
Trusted by 50,000+ learners
Related Course
Master SQL — Hands-On
Join 5,000+ students at edu.machinelearningplus.com
Explore Course
Before you go...

Get Your Free AI/ML Engineer Roadmap

The step-by-step path used by 25,000+ learners to go from zero to career-ready in AI/ML.

šŸ”’ 100% Free ā˜• No spam, ever āœ“ Instant delivery
Your roadmap is on the way to your inbox

Want help choosing the right AI/ML path?

Book a free guidance call and our team will help you find right starting point for your AI/ML journey.

Get a free guidance call
šŸ‡®šŸ‡³ +91 ā–¾
Thank you for your submission!
Our team will call you shortly. You'll also receive a confirmation on your email.
Scroll to Top
Scroll to Top
Course Preview

Machine Learning A-Zā„¢: Hands-On Python & R In Data Science

Free Sample Videos:

Machine Learning A-Zā„¢: Hands-On Python & R In Data Science

Machine Learning A-Zā„¢: Hands-On Python & R In Data Science

Machine Learning A-Zā„¢: Hands-On Python & R In Data Science

Machine Learning A-Zā„¢: Hands-On Python & R In Data Science

Machine Learning A-Zā„¢: Hands-On Python & R In Data Science