SQL 复杂联合
描述起来有点棘手,但希望有一个解决方案。
我有一个 UDF,它接受一个 ID 并返回一个表。有没有办法可以对这些 ID 执行 SELECT
并对 UDF 结果执行 UNION
?例如;
获取 ID;
选择[ID] 来自 [TableOfIDs]
从 ID 获取对象属性;
选择* FROM GetObjectProperties(@ID)
但如何将两者结合起来?也就是说,对 ID 查询的 UDF 结果进行并集?
我希望这是有道理的!
This is a little tricky to describe, but hopefully there is a solution.
I have a UDF which takes an ID and returns a table. Is there a way I can do a SELECT
for these IDs and perform a UNION
of the UDF results? For example;
To get the IDs;
SELECT [ID]
FROM [TableOfIDs]To get the object properties from an ID;
SELECT *
FROM GetObjectProperties(@ID)
But how do I combine the two? That is, to do a union of the UDF results from a query for the IDs?
I hope that makes sense!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
应用
:You need to use
APPLY
: