批量往数据库里添加数据 insert into 表1 (字段a1,字段a2)select 字段b1,字段b2 from 表2;这样就把表2里的数据导入到表1里面,需要注意的是字段类型必须一致。update 表1 set 字段a1=(select 字段b1 from 表2);