在php中查询mysql以获取两个表之间的区别

时间:2015-05-12 09:52:10

标签: php mysql

我有两个具有相同结构的表来获取用户指纹数据,我想从第一个表中获取第二个表中不存在的数据并将其插入第二个表 两个表的结构:

  • ID
  • USER_ID
  • CHECK_TIME
  • check_type
  • sensor_id

1 个答案:

答案 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