欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mssql 一次向表中插入多条数据的方法分享 (转自:http://www.maomao365.com/?p=6058)

程序员文章站 2023-08-20 17:25:05
转自:http://www.maomao365.com/?p=6058) 摘要: 在mssql中,一条sql语句默认为一个事务,下文展示如何在一条sql语句中,插入多行数据
例: ......

转自:http://www.maomao365.com/?p=6058)

<span style="font-size:16px;font-weight:bold;">
摘要:
在mssql中,一条sql语句默认为一个事务,下文展示如何在一条sql语句中,插入多行数据
</span>
<hr />
例:
 

create table test (keyId int identity,info varchar(10))
go
insert into test(info) values('a'),('b'),('ac'),('ad'),('e')
----采用在每个插入的value后面加入一个逗号
go
select * from test 
go
truncate table test 
drop table test