About 790,000 results
Open links in new tab
  1. sql - How to insert a value that contains an apostrophe (single …

    Dec 16, 2009 · The apostrophe, or single quote, is a special character in SQL that specifies the beginning and end of string data. This means that to use it as part of your literal string data …

  2. How to Insert a Value that Contains an Apostrophe in SQL?

    Jul 23, 2025 · Dealing with apostrophes in SQL queries is common when inserting values containing single quotes into a database. Remember to write two single-quote signs instead of …

  3. sql server - How can I insert '&' symbol in data - Database ...

    You can use a T-SQL Script Task or Derived Column Transformation as others have mentioned already. In the end you need to use some kind of string manipulation function to get that …

  4. How to insert & character or special character into Database using SQL

    Nov 4, 2022 · How to insert & character or special character into Database using SQL*Plus. Solution 1: If you are not using substitution variables (&1 &2 &3 etc.) you can do a “SET …

  5. Inserting symbols in a field – SQLServerCentral Forums

    Jul 29, 2007 · Hi All, I am trying to insert symbols in a field of a table. I am using the datatype nvarchar for the field. However when i tried to insert a statement with the symbol pi, it comes …

  6. How do I insert a special character such as ' (single quote) into …

    To insert a special character such as “ ‘ “ (single quote) into MySQL, you need to use \’ escape character. The syntax is as follows −. To understand the above syntax, let us create two …

  7. sql - I want to insert this symbol (') in mysql - Stack Overflow

    Feb 4, 2013 · In a sql Table , i have a field as Height and i want to insert the height as 5'6'' that is 5 feet and 6 inches. How can i do this? While using the simple insert command it throws an …

  8. Windows Alt Codes for Special Characters (Complete List)

    The complete list of Windows Alt codes (Alt key shortcuts) to quickly type special characters & symbols like ± ² © ° é ♥ ⌀ ™ that are not found on a keyboard.

  9. sql - How to enter special characters like "&" in oracle database ...

    Aug 29, 2016 · Justin's answer is the way to go, but also as an FYI you can use the chr () function with the ascii value of the character you want to insert. For this example it would be:

  10. How to insert special characters in SQL Server? [duplicate]

    Nov 22, 2022 · While asking a question, you need to provide a minimal reproducible example: (1) DDL and sample data population, i.e. CREATE table (s) plus INSERT T-SQL statements.