Oracle SQL查询选择[关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle SQL查询选择[关闭]相关的知识,希望对你有一定的参考价值。
答案
您可以使用exists
和not exists
:select t.*
from tourists t
where
exists (
select 1
from stay s
inner join hotels h on h.hcode = s.hcode
where s.tcode = t.tcode and h.name = 'Hilton'
) and not exists (
select 1
from stay s
inner join hotels h on h.hcode = s.hcode
where s.tcode = t.tcode and h.name = 'Continental'
)
以上是关于Oracle SQL查询选择[关闭]的主要内容,如果未能解决你的问题,请参考以下文章
ORACLE SQL 错误 - 缺少右括号 - 查询 [关闭]