Question 7 0.5 pts You can use the statement to go to the end of a loop. END LEA
ID: 3596122 • Letter: Q
Question
Question 7 0.5 pts You can use the statement to go to the end of a loop. END LEAVE ITERATE WHILE Question 8 0.5 pts When using a cursor to get column values from the row and store them in a series of variables, you use the statement. UPDATE OPEN FETCH WHILE Question 9 0.5 pts Which built-in condition occurs when any error condition other than the NOT FOUND condition occurs or when any warning messages occur. SQEXCEPTION SQLWARNING SQLINFO O all of the above Question 10 0.5 pts Which type of loop will be executed at least once? simple loop REPEAT loop WHILE loop o all of the aboveExplanation / Answer
Question 7
We can use the LEAVE statement to go to the end of loop in MySQL
Question 8
FETCH statement is used to get and store the values from DB row in to cursor.
Question 9
All of the above is the answer for this.
Question 10
REPEAT loop is guaranteed to be exceuted at least once.