新增sql后面可以跟where条件(多表关联新增数据和复制数据)
Posted 每天性感一点点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新增sql后面可以跟where条件(多表关联新增数据和复制数据)相关的知识,希望对你有一定的参考价值。
1。在sql中新增数据的时候,必须条件是,insert的字段在(select)的表里面的字段是有的
insert into table_name( v1,v2,v3) VALUES (select a,b,c from 查询表 where 条件)
2.此sql可复制数据
insert into inj_wash_updatelog g (g.proid,g.update_date)
select t.proid,t.subdate from inj_wash_pro t
where t.proid not in(select g.proid from inj_wash_updatelog g)
以上是关于新增sql后面可以跟where条件(多表关联新增数据和复制数据)的主要内容,如果未能解决你的问题,请参考以下文章