首页 > 代码库 > 插入查询到的数据
插入查询到的数据
往中间表中插入大量的数据(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);
插入查询到的数据
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。