Question: Can you please explain the following code? BEGIN TRY DECLARE @x int SELECT @x = 1/0 PRINT 'This statement will not be executed' END TRY
Can you please explain the following code?
BEGIN TRY
DECLARE @x int
SELECT @x = 1/0
PRINT 'This statement will not be executed'
END TRY
BEGIN CATCH
PRINT 'The error message is: ' + error_message()
END CATCH
can i please get this in 20mins please thank u
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
