What is the result of this series of statements?tsqlBEGIN TRYSELECT 'Foo' AS Result;END TRYBEGIN CATCHSELECT 'Bar' AS Result;END CATCH

🎲 Try a Random Question  |  Total Questions in Quiz: 38  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Transact-SQL (T-SQL) Quiz — practice the complete quiz, review flashcards, or try a random question.

Transact-SQL (T-SQL) MCQs For LinkedIn Skill Assessments.

T-SQL is an extension to the SQL used to interact with relational databases. 


What is the result of this series of statements?<br>tsql<br>BEGIN TRY<br>SELECT 'Foo' AS Result;<br>END TRY<br>BEGIN CATCH<br>SELECT 'Bar' AS Result;<br>END CATCH<br>