oracle中如何使用select和if条件?
我的要求是从复杂的查询中获取一个数字并检查 num 是否=desiredNum。
如果它等于desiredNum,那么我必须执行另一组select语句,
有什么方法可以在查询中实现这一点而不是编写函数?
例如:
select case when val =2
then select val1 from table1
else 'false'
from (select val from table)
这可能吗?
My requirement is to get a number from a complex query and check if the num = desiredNum.
If it is equal to desiredNum, then I must perform another set of select statements,
Is there any way I can achieve this in a query rather than writing a function?
Eg:
select case when val =2
then select val1 from table1
else 'false'
from (select val from table)
Is this possible ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您的意思是 val 和 val1 都来自同一个表,但是当 val=2 时,要使用 val1 代替。如果您实际上有两个表,并且每个表都只有一条记录,那么
I assume you meant that val and val1 are both from the same table, but when val=2, to use val1 instead. If you actually had two tables, and they both have only one record each, then
我不是 100% 我明白你需要什么。但我认为你可以使用联合来做到这一点:
在这种情况下,“幻数”是2。如果theValues表查询返回2,那么你从表2的结果中得到结果,否则你从表1中得到结果 ,
干杯
丹尼尔
I am not 100% I understand what you need. But I think you could use a union to do this:
In this case the "magic number" is 2. If the theValues table query returns 2, then you get the results from the result from table2, else you get the result from table 1.
Cheers,
Daniel