sql
select * from student a
where a.age>15
and
exists(select 1 from score s where s.student_id = a.id and s.name='数学')
and
not exists (select 1 from score s where s.student_id=a.id and s.name<>'语文')
以上语句的含义:
查询出年龄大于15岁的并且参加过数学考试 但是没有参加过语文考试的学生。
也许会说这没有问题,但是当score表中有多条数据时,查询的结果就会出现重复的数据。
解决办法:
将not exists 换成 not in
sql
select * from student a
where a.age>15
and
exists(select 1 from score s where s.student_id = a.id and s.name='数学')
and
a.id not in (select s.student_id from score s where s.name<>'语文')
为什么查询结果会出现重复的数据,具体原因未知。