InterviewSolution
Saved Bookmarks
| 1. |
The statement that constructs a branching flow-control construct is _____________(a) BEGIN…END(b) CASE(c) ITERATE(d) LEAVEThe question was posed to me by my college professor while I was bunking the class.I need to ask this question from Compound Statement Syntax in section SQL Syntax of MySQL |
|
Answer» RIGHT choice is (b) CASE The best I can explain: The ‘CASE’ statement PROVIDES a BRANCHING flow-control construct. When the initial expression, ‘expr’, is PRESENT, CASE compares it to the expression following each ‘WHEN’. |
|