子查询作为偏移量参数 - DB2 中的 LAG() 函数
Subquery as offset argument - LAG() Function in DB2
我想请教一个问题。一般我们知道LAG()函数可以表示为LAG(列表达式,Offset,[默认值])OVER(ORDER BY . . .)。有谁知道偏移量是否可以是 db2 中的 子查询?
我尝试插入一个子查询并将结果转换为没有结果的整数。
提前致谢!
手动:https://www.ibm.com/docs/en/informix-servers/12.10?topic=expressions-lag-lead-functions
引用:
offset
Non-negative integer constant defining an offset from the position of the current row
...
Literal integer
所以,不,你不能使用 sub-query
我想请教一个问题。一般我们知道LAG()函数可以表示为LAG(列表达式,Offset,[默认值])OVER(ORDER BY . . .)。有谁知道偏移量是否可以是 db2 中的 子查询?
我尝试插入一个子查询并将结果转换为没有结果的整数。
提前致谢!
手动:https://www.ibm.com/docs/en/informix-servers/12.10?topic=expressions-lag-lead-functions
引用:
offset
Non-negative integer constant defining an offset from the position of the current row
...
Literal integer
所以,不,你不能使用 sub-query