WITH RESULT SETS Available only from SQL Server 2011 (Denali).
This command change the names and/or data types of the returning result set of a stored procedure.
EXEC ExampleSP
WITH RESULT SETS
(
(
ID INT,
ModifyNameVARCHAR(150),
ModifyType VARCHAR(15)
)
)
GO
No comments:
Post a Comment