Is it possible to pass a table parameter to a stored procedure without having to create a type for it?
I would have to define the table in the stored procedure instead of defining a type.
Is this possible?
Something like:
CREATE PROCEDURE [dbo].[XYZ] @table table (id int, description varchar(100)), ...
|