mysql操作常用技巧

删除一张表的数据,条件在另一张表

delete  a  from A a,B b where a.tel=b.tel and a.code=b.code and a.day='201808';

  

原文地址:https://www.cnblogs.com/JAYIT/p/9720117.html