将查询作为参数传递给 udf 函数

Posted

技术标签:

【中文标题】将查询作为参数传递给 udf 函数【英文标题】:Passing query as a parameter to udf function 【发布时间】:2015-05-20 12:24:57 【问题描述】:

我想将标量值选择查询作为参数传递给这样的函数:

select * from dbo.ftLatestOrderLines(select max(id) from [orders])

db 服务器抛出此错误:

Msg 156, Level 15, State 1, Line 3
Incorrect syntax near the keyword 'select'.
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near ')'.

有没有办法将查询作为参数传递?

【问题讨论】:

【参考方案1】:

尝试在子查询周围添加另一组括号...

select * from dbo.ftLatestOrderLines((select max(id) from [orders]))

【讨论】:

以上是关于将查询作为参数传递给 udf 函数的主要内容,如果未能解决你的问题,请参考以下文章

Pyspark 将函数作为参数传递给 UDF

Pig 将关系作为参数传递给 UDF

如何将 Set/HashSet 作为参数传递给 Spark 中的 UDF?

将列表作为参数传递给 udf 方法

将表作为参数传递给函数

尝试将 Map 作为参数传递给 Udf 时没有 typeTag 异常