作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Azure Cosmos Db 中,是否可以从另一个存储过程调用一个存储过程?那么UDF呢?我可以从另一个 UDF、存储过程或触发器调用一个 UDF吗?
最佳答案
is there a way to call a stored procedure from another stored procedure? Or Trigger?
无法在存储过程或触发器中执行存储过程。但是,您可以在存储过程中定义 JS 函数,可以在该存储过程中引用、调用和重用该函数。
UDF?
无法在一个 udf 中调用另一个 udf,但您可以尝试嵌套 udf。 UDF需要在sql中使用,例如select udf.test(c) from c
。
所以,你可以像下面这样执行:
SELECT udf.bbb(udf.aaa(c.id)) FROM c
关于azure - 宇宙数据库 : Call a stored procedure from another stored procedure or trigger,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55132250/
我是一名优秀的程序员,十分优秀!