如何在 SQL Server 2008 中使用动态查询传递表值参数

发布于 2024-10-15 08:58:28 字数 176 浏览 4 评论 0原文

我正在使用接受 TVP 的动态 SQL 查询调用一个函数。有没有办法在动态sql中传递表值参数。为了实现此目的,我可以做的一件事是传递逗号分隔的字符串,然后将此逗号分隔的字符串转换为表。但问题是我必须为表中的每个项目转换字符串-表(为所有行调用该函数),如果我可以在动态sql中传递表,则可以避免这种情况。

谢谢 阿什瓦尼

I am calling one function using dynamic SQL query which accepts TVP. Is there any way to pass table values parameter in dynamic sql. One thing I can do to achieve this is to pass comma separated string and then convert this comma separated string to table. But the problem is then I have to convert string - table for each item in my table (The function is called for all the rows) which can be avoided if I can pass table in dynamic sql.

Thanks
Ashwani

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

药祭#氼 2024-10-22 08:58:28

当然。其中 inputTable 是您的 TVP 类型,@test 是变量:

exec sp_executesql
 N'select
    t.*
   from @test as t
   where t.ID = 2'
,N'@test inputTable readonly' -- note the readonly
,@test

Certainly. Where inputTable is your TVP type and @test is the variable:

exec sp_executesql
 N'select
    t.*
   from @test as t
   where t.ID = 2'
,N'@test inputTable readonly' -- note the readonly
,@test
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文