我有两个具有相同结构的表来获取用户指纹数据,我想从第一个表中获取第二个表中不存在的数据并将其插入第二个表 两个表的结构:
答案 0 :(得分:1)
您可以使用insert into select from
使用其他一些连接作为
insert into table2
select
t1.* from table1 t1
left join table2 t2 on t1.user_id = t2.user_id and t1.check_time = t2.check_time
where t2.user_id is null and t2.check_time is null