I have a stored procedure which takes 2 parameters of UDT.
How can I pass the value to the stored proc parameters while executing this stored procedure?
For ex:
create procedure temp
(
@input1 AS Datatable1 READONLY,
@input2 AS Datateble2 READONLY,
)
Here Datatable1
and Datatable2
are table types
So how can I execute the procedure?
Can anyone guide me?