use `testdb`;


update  dtable d  INNER JOIN new_table n ON d.details = n.details
set d.email = n.email, d.cellphone =n.cellphone,d.contact = n.contact,d.address = n.address 

 

update 遇到 disable safe  

使用 以下语句解决

  SET SQL_SAFE_UPDATES=0; 

  

相关文章:

  • 2022-01-03
  • 2021-11-16
  • 2021-07-30
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2021-06-08
猜你喜欢
  • 2021-07-12
  • 2021-12-03
  • 2022-02-05
  • 2021-04-03
  • 2022-01-07
  • 2021-05-15
相关资源
相似解决方案