sql语句在decode子句中
解码的工作原理如下:
SELECT DECODE('col1', 'x', 'result1','y','result2') resultFinal
FROM table1;
可以在 sql 中完成此操作:
SELECT *
FROM (SELECT DECODE('col1', 'x' (someSql),'y',(someOthersql)) result
FROM table1)
因此,result1 和 result2 不是固定值,而是 sql 语句。如果不可能,如何在没有存储过程的情况下获得相同的结果。
编辑: someSql 和 someOthersql 都是复杂的查询,有许多连接返回许多但相同数量的具有相同列名称的列。
The decode works like this:
SELECT DECODE('col1', 'x', 'result1','y','result2') resultFinal
FROM table1;
It possible to accomplish this in sql:
SELECT *
FROM (SELECT DECODE('col1', 'x' (someSql),'y',(someOthersql)) result
FROM table1)
So instead of result1 and result2 being fixed values, they would be sql statements. If not possible, how can I achieve the same result without a stored proc.
EDIT: someSql and someOthersql are both complex queries with many joins returining many but same number of cols with same col names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果someSql和someOthersql返回完全一行一列,那么这应该可以工作。
以下对我有用:
If someSql and someOthersql return exactly one row with one column, then this should work.
The following works for me:
我认为您可能需要创建一个 PL/SQL 过程来处理复杂的逻辑。
I think you may need to create a PL/SQL procedure to handle the complex logic.