我想获取具有区域 62 和 69 但没有区域 200 和 92 的数据,我正在使用此查询,但这不起作用
select rtp1.releaseId, rtp1.territoryId
from ReleaseTerritoryPrice rtp1
where rtp1.territoryId in (62,69)
and not exists (select releaseId
from ReleaseTerritoryPrice t2
where t2.territoryId in (200,92)
and rtp1.releaseId = t2.releaseId);
任何帮助?谢谢。