用T-SQL语句删除AQL成绩表中所有成绩不及格(分数小于60) 的学生

2025-03-10 07:34:08
推荐回答(2个)
回答1:

delete from student st
where st.student_no in(select a.student_no from AQL a where a.mark < 60 and st.student_no = a.student_no);

回答2:

delete from 表名 where 分数<60