MySQL多表关联删除 发表于 2020-03-17 更新于 2023-03-01 分类于 MySQL 本文字数: 75 阅读时长 ≈ 1 分钟 t2和t3数据表中存有他t1表中数据的id 选择删除t1表中的数据以及t2和t3表中相关(task_id)的数据 SQL语句如下: 12345DELETE t1, t2, t3FROM t_satisfaction_followup_patients t1LEFT JOIN t_hospital_followup_record t2 ON t1.id = t2.relation_idLEFT JOIN t_manage_call t3 ON t1.id = t3.task_idWHERE t1.id = '8aa5eeb2529d46d5962d561d3a9beedc'