VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > T-SQL >
  • sql语句大全之mssql 一次向表中插入多条数据的方

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

 

转自: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 


相关教程