What is the IN and OUT parameter in SQL Server

What is INand OUTparameter in SQL Server?

+3
source share
1 answer

IN Parameters - parameters that pass data to the stored procedure

OUT Parameters - parameters used to return data from a stored procedure

See MSDN for more information on procedures with IN and OUT parameters and how to use them.

Examples of using IN / OUT with TSQL can be found here: SQL Server Stored Procedure Basics

+8
source

Source: https://habr.com/ru/post/1773474/


All Articles