Sql-server inserting multiple rows of data with insert-syntax and examples

Source: Internet
Author: User

Inserting multiple rows of data, having more than one piece of data in the original table, and building a new table can be cumbersome, using the following syntax:


Add data from an existing table to a table that already exists by using the Insert Select statement
Syntax: Insert into< new table name > (column name)
select< Column Name >
from< Old table name >
Note: The AddressList table must be pre-created and has a column name

Add data from an existing table to a new table by using the select into statement
Syntax:select< column name >--column name of old table
into< New Table name >
from< Old table name >

Sql-server inserting multiple rows of data with insert-syntax and examples

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.