在mssql可以这样
insert
into
tablefortest(a,b)
select 1 , 2
union
select 3 , 4
union
select 5 , 6
select 1 , 2
union
select 3 , 4
union
select 5 , 6
在mysql可以这样
insert
into
tablefortest(a,b)
values
(
1
,
2
) ,(
3
,
4
) ,(
5
,
6
)