(Choose 1 answer)
Consider the following Transact-SQL statement fragment from a stored procedure. What hap occurs during the INSERT statement?
VALUES (@TempVal)
INSERT INTO Temp (Col1)PRINT @TempValELSE
IF @@error != 0 RETURN 1
RETURN 0
...MORE CODE BELOW...
A. The stored procedure continues to execute more code below.
B. The stored procedure exits with a return value of 1.
C. The stored procedure exits with a return value of 0.
D. The stored procedure exits with no return value.
Q: 42