51.
Is duplicate entry of primary key is allowed in SQL?

52.
The columns containing binary value that include null bytes will not print properly using the %s printf() format specifier.

53.
MySQL uses security based on ACL. What does it stand for?

54.
Find out the logical error in the following MySQL code snippet?
CREATE TABLE person
( person_id VARCHAR(20),
 Name VARCHAR (20),
 Address VARCHAR (20),
 Mobile_no  SMALLINT 
);

56.
Which statement is used to force the optimizer to use tables in a particular order?

57.
Which option suppresses output unless there are errors in the table?

58.
How many values can be returned from a stored procedure?

59.
The server is told to accept spaces after function names by . . . . . . . .

60.
The following SQL statement is invalid.
SELECT abc, xyz FROM table1 UNION abc, def FROM table2;