Inserting multiple rows of data is similar to the select Union method.

Source: Internet
Author: User
Tags dname

Cite: http://blog.csdn.net/downmoon/article/details/5936706

[ruby] view plaincopyprint? Create table Demo_Values  (PKID int not null identity(1,1) primary key  ,DName Nvarchar(20) null  ,DCode NVarchar(30) null  ,DDate datetime null  )  go  --this SQL is only for SQL Server 2008  Insert into Demo_Values  (DName,DCode,DDate)  values  (‘DemoA‘,‘AAA‘,GETDATE()),  (‘DemoB‘,‘BBB‘,GETDATE()),  (‘DemoC‘,‘CCC‘,GETDATE()),  (‘DemoD‘,‘DDD‘,GETDATE()),  (‘DemoE‘,‘EEE‘,GETDATE())  --(5 row(s) affected)  

Construct a temporary result set. Construct a result set like union.

[ruby] view plaincopyprint?--this SQL is only for SQL Server 2008  select DName,DCode,DDate  from  (values  (‘DemoA‘,‘AAA‘,GETDATE()),  (‘DemoB‘,‘BBB‘,GETDATE()),  (‘DemoC‘,‘CCC‘,GETDATE()),  (‘DemoD‘,‘DDD‘,GETDATE()),  (‘DemoE‘,‘EEE‘,GETDATE())  )  Demo_Values (DName,DCode,DDate)  --(5 row(s) affected)  /*  DName    DCode    DDate  DemoA    AAA    2010-10-12 20:37:45.500  DemoB    BBB    2010-10-12 20:37:45.500  DemoC    CCC    2010-10-12 20:37:45.500  DemoD    DDD    2010-10-12 20:37:45.500  DemoE    EEE    2010-10-12 20:37:45.500  */  

 

Inserting multiple rows of data is similar to the select Union method.

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.