往中间表中插入大量的数据(1万以上),这块表有两个字段,一个字段是确定的,3471;
另外一个字段必须通过查询得到;
insert into ec2_customer_resource_ec2_customer_resource_batch(customerresources_id,customerresourcebatches_id)
select b.id,a.id
from ec2_customer_resource_batch a , ec2_customer_resource b
where a.id=3471 and
b.importdate > ‘2016-12-05 12:20:00‘ and importdate < ‘2016-12-05 12:50:00‘;
插入一条数据可以直接用模板:
insert into ec2_customer_resource_ec2_customer_resource_batch(customerresources_id,customerresourcebatches_id) values (*, 3071);
时间: 2024-10-27 06:17:58