本文介绍了Oracle 中的 SQL Server APPLY 相当于什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我是 Oracle 的新手.是否有与 SQL Server APPLY 相同的内置关键字?
I am new to Oracle. Is there a builtin keyword does the same job of SQL Server APPLY?
推荐答案
我认为相当于 Oracle 中的 APPLY 子句称为横向 JOIN.Oracle 中的横向连接是将表 A 与输出行的函数 F 连接起来,该函数将 A 的列作为参数.
I think the equivalent of the APPLY clause in Oracle is called a lateral JOIN. A lateral join in Oracle is when you join a table A with a function F that outputs rows and this function has columns of A as parameters.
让我们用这个设置构建一个小例子:
Let's build a small example with this setup:
在 Oracle 中横向连接是自动的,没有特殊的关键字:
A lateral join is automatic in Oracle, there is no special keyword:
这篇关于Oracle 中的 SQL Server APPLY 相当于什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!