插入查询到的数据

Posted 陈泽勇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入查询到的数据相关的知识,希望对你有一定的参考价值。

往中间表中插入大量的数据(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);

 

以上是关于插入查询到的数据的主要内容,如果未能解决你的问题,请参考以下文章

在oracle中怎么将查询到的数据插入到另一个表中

新建表需要原表的数据,mysql 如何把查询到的结果插入到新表中

MYSQL 如何把查询到的结果插入到另一个表中?

关于模糊查询和插入数据乱码问题

关于模糊查询和插入数据乱码问题

mysql 如何把查询到的结果插入到另一个表中