Ето пример за това как да прехвърлите параметър със стойност на таблица към sp_executesql
. Променливата трябва да бъде предадена 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
Това отпечатва Отговорът на Вселената и всичко .