语法
1 插入一行
insert into table (field1,field2.....) select value1,value2........;
2 插入多行
insert into table (field1,field2.....) select value1,value2........ union select value1,value2........
实例
create table bank ( customerName char(10), --顾客姓名 currentMoney money --当前余额 ) go insert into bank(customerName,currentMoney) select ‘张三‘,1000 union select ‘李四‘,1