41.
Which Keyword is used to remove duplicate rows in the result set?

42.
What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE lname LIKE ‘_a%e%’;

44.
Which program is used as a utility for MyISAM table maintenance?

45.
The MySQL server is not configurable.

46.
What will be the result of the following MySQL command?
SELECT emp_id,
‘ACTIVE’ AS STATUS,
emp_id * 3.14 AS emp_pi,
UPPER (lname) AS last_name
FROM employee;

47.
abc in the following MySQL statement is . . . . . . . .
DELETE FROM xyz WHERE abc = 5;

48.
"MODIFY" is used with which "Query clause"?

49.
What is the generic handle whose meaning depends on context?

50.
In the following MySQL query, "person_1" belongs to which category of table in MySQL?
CREATE VIEW person_1 AS
SELECT fname, lname, person_id FROM person;