【单选题】
A select * from student_table where id in (
select stu_id from score_table where subject_name <> '英语');
B select * from student_table where id not in (
select stu_id from score_table where subject_name = '英语');
C select * from student_table where id not in (
select stu_id from score_table where subject_name <> '英语');
D select * from student_table where id in (
select stu_id from score_table where subject_name = '英语');
查看更多