Dưới đây là một ví dụ về cách chuyển một tham số có giá trị bảng vào sp_executesql
. Biến phải được chuyển readonly
:
if exists (select * from sys.types where name = 'TestTableType')
drop type TestTableType
create type TestTableType as table (id int)
go
declare @t TestTableType
insert @t select 6*7
exec sp_executesql N'select * from @var', N'@var TestTableType readonly', @t