A、 select stuname from student where stuid in(select stuid from score)
B、 select stuname from student,score where student.stuid=score.stuid
C、 select stuname from student left outer join score on student.stuid=score.stuid
D、 select stuname from student where exists (select * from score where student.stuid=score.stuid)