SQL Server output parameter issue
The confusion is justified to a degree – and other RDBMS like Oracle do have stored procedure parameters which can be of type IN (input only), OUT (output only), or INOUT (both ways – “pass by reference” type of parameter). SQL Server is a bit sloppy here since it labels the parameter as OUTPUT, but … Read more