91.
What is the significance of "ORDER BY" in the following MySQL statement?
SELECT emp_id, fname, lname
FROM person
ORDER BY emp_id;

92.
A procedure that involves REPAIR TABLE with the USE_FRM option must be done before upgrading.

93.
In the following MySQL command how many rows will be updated?
UPDATE person
SET lname=’s’,
Fname = ’p’,
WHERE person_id = 1;
/* person_id is a primary key */

94.
Which of these operators does not perform relative value comparisons?

95.
Which header should be included first?

96.
In oracle database variable length column is declared by . . . . . . . .

97.
What is the isolation property of transactions?

99.
What returns a string containing an error message?

100.
Which of the following returns a MySQL-specific numeric code?