mysql里怎么同时删除两个表中的内容

2025-06-22 02:45:10
推荐回答(1个)
回答1:

delete score,student from score t1 inner join student t2 on t1.student_id=t2.student_id where t1.student_id='01';