Hi Guys,

I tried to run below query

BEGIN TRY
SELECT 1/0
print 'Hello'
END TRY
BEGIN CATCH
print 'CATCH entered.'
END CATCH
but it returned only empty column and it should print 'CATCH entered'

Could You please help me with that?