SQL Server 2008 是否有“库存”功能?表参数类型?

发布于 2024-09-29 09:37:54 字数 115 浏览 4 评论 0原文

SQL Server 2008 是否提供任何预定义的表类型以与表值参数一起使用?

例如,如果我只想将整数列表作为表传递,并从我传递的其他参数中获取必要的上下文,是否有适当的类型,或者我是否必须创建它?

Does SQL Server 2008 offer any pre-defined table types for use with table-valued parameters?

For instance, if I just want to pass in a list of integers as a table, and derive necessary context from the other parameters I'm passing in, is there a type in place for that, or would I have to create it?

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

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

发布评论

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

评论(1

如痴如狂 2024-10-06 09:37:54

据我所知,没有系统表类型。
不过它们很​​容易制作...

create type dbo.IntList as table (
  Value int not null
)

There are no system table types as far as I know.
They are pretty easy to make though...

create type dbo.IntList as table (
  Value int not null
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文