在另一个 UDF 中使用 ScarlaValue 函数返回值
[CheckAtomicResultCriteria]
是一个返回 BIT 的标量值函数。
我想在另一个 TableValue 函数的 where 子句中使用该函数。如下所示,但不起作用。使用这个的正确方法是什么?
WHERE [CheckAtomicResultCriteria](parameters) = '1'
这都不起作用
WHERE (SELECT [CheckAtomicResultCriteria](parameters)) = '1'
[CheckAtomicResultCriteria]
is a Scalar value function that returns a BIT.
I want to use that function in another TableValue function's where clause. Like below, but doesn't working. What is the correct way of using this?
WHERE [CheckAtomicResultCriteria](parameters) = '1'
Neither this works
WHERE (SELECT [CheckAtomicResultCriteria](parameters)) = '1'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行 UDF 时,必须为架构添加前缀。
所以你需要这样称呼它:
When executing a UDF, you must prefix the schema.
So you need to call it like this: