51.
What is the size of the BIT type?

52.
Without LOCAL, LOAD DATA is . . . . . . . .

53.
The variable used to set table alias names as non case sensitive is . . . . . . . .

54.
MySQL Enterprise Backup records details of each backup in . . . . . . . .

55.
Which data type is best suited to store currency values?

56.
The maximum size in bytes of a row in MySQL is . . . . . . . .

57.
Foreign keys cannot handle deletes and updates.

58.
Which of the following commands sets the SQL mode as TRADITIONAL?

59.
Is there any error in the following MySQL statement?
SELECT e.emp_id, e.fname,e.lname,d.name
FROM employee AS e INNER JOIN department AS d
ON e.dept_id=e.dept_id;

60.
What will be the output of the following MySQL command?
SELECT *
FROM employee
WHERE (title=’HEAD TELLER’) AND (start_date>2013-01-24);