sql server多条记录同时插入一张表

insert into student

select 'wenmo',123,1,2,3 union

select 'hello',123,1,2,3 union

select 'world',123,1,2,3;

原文地址:https://www.cnblogs.com/xxml/p/5761420.html