Insert special character statements in Oracle SQL

Source: Internet
Author: User

Oracle SQL INSERT special character statement for INSERT database data statement: INSERT INTO TESTTAB (FIELD1) VALUES ('test') if there are single quotation marks in the string inserted INTO the database, escape processing is required, insert "It's a tree. ", the SQL statement is as follows: INSERT INTO TESTTAB (FIELD1) VALUES ('it''s a dog. ') if the SQL statement contains "&", the subsequent strings are processed as a variable and cannot be inserted into the database normally. If you do need to INSERT & characters INTO the database, perform the following operations: insert into testtab (FIELD1) VALUES ('I work in R' |' & '| 'd. ') from Feng Yifei's column

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.