Insert into select and select INTO

Source: Internet
Author: User
Tags error code

1.INSERT into SELECT statement

Statement form: Insert into target_table (field1,field2,...) Select Value1,value2,... from source_table

The target table target_table must exist, and because the target table Table2 already exists, we can insert a constant in addition to the fields source_table the source table.

2.SELECT into from statement

Statement form: SELECT vale1, value2 into target_table from source_table

The target table target_table does not exist because the table target_table is created automatically at insert time and the specified field data in source_table is copied to target_table.

MySQL does not support a SELECT INTO statement to directly back up the table structure and data:

execution: SELECT * into sms_log_216 from Sms_log WHERE couponid like ' -216% '

Error:

Error code:1327
Undeclared variable:sms_log_216

Workaround: CREATE TABLE sms_log_216 (SELECT * from Sms_log WHERE couponid like '-216% ')

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.