表结构及数据如下:
本人现在就想查询出只进入,没有离开的人的列表,跪求指导,谢谢!
本人现在就想查询出只进入,没有离开的人的列表,跪求指导,谢谢!
解决方案
40
select
a.id,
a.type,
a.personid,
a.time
from
表名 as a
left join 表名 as b on a.personid=b.personid and b.type=”离开”
where a.type=”进入” and b.id is null
a.id,
a.type,
a.personid,
a.time
from
表名 as a
left join 表名 as b on a.personid=b.personid and b.type=”离开”
where a.type=”进入” and b.id is null