SQL BULK INSERT Data

Source: Internet
Author: User
Tags bulk insert

SQL statement Summary of BULK INSERT data for MS SQL Server database:


The first type:

Insert into Tb_namelist (name,insertdate,updatedate)

VALUES (' AA ', GETDATE (), GETDATE ())

Insert into Tb_namelist (name,insertdate,updatedate)

VALUES (' BB ', GETDATE (), GETDATE ())

Insert into Tb_namelist (name,insertdate,updatedate)

VALUES (' CC ', GETDATE (), GETDATE ())

In this way, all the statements are written, once executed, in fact, and a single insert is the same.


The second type:

Insert into Tb_namelist (name,insertdate,updatedate)

VALUES (' AA ', GETDATE (), GETDATE ()), (' BB ', GETDATE (), GETDATE ()),

(' CC ', GETDATE (), GETDATE ())

This can be written less than a lot of SQL statements, as long as the values of the order are written clear OK.


The third type:

Insert into Tb_namelist (name,insertdate,updatedate)

Select ' DD ', GETDATE (), GETDATE () union ALL

Select ' EE ', GETDATE (), GETDATE () union ALL

Select ' FF ', GETDATE (), GETDATE ()

With UNION all, it is said to be faster than the second, but the field is simple, the amount of data is less effective

SQL BULK INSERT Data

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.