Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Server 2008 是否提供任何用于表值参数的预定义表类型?
例如,如果我只想将整数列表作为表格传入,并从传入的其他参数中派生必要的上下文,是否有合适的类型,或者我必须创建它?
据我所知,没有系统表类型。虽然它们很容易制作......
create type dbo.IntList as table ( Value int not null )