delete row in mysql which is exist in another table


DELETE FROM t1 USING users_15july t1 INNER join users t2 ON ( t1.email = t2.email )


Leave a Reply