81.
Each database has a data directory located under database directory.

82.
The locking statements LOCK TABLES and UNLOCK TABLES are not permitted in stored routines.

83.
The following MySQL query belongs to which condition types?
SELECT fname
FROM person
WHERE title=’TELLER’;

84.
Deletion of an employee from table also deletes that employee from another table. This kind of delete is called . . . . . . . .

85.
The default case sensitivity of the database and table names depends on . . . . . . . .

86.
What is the default format for "Year" data type?

87.
Association between one or more MyISAM tables and the named key cache is set by . . . . . . . .

88.
In the following SQL code, InnoDB is . . . . . . . .
CREATE TABLE student (
		name CHAR(30),
		student_id INT,
		PRIMARY KEY (student_id)
	) ENGINE = InnoDB;

89.
Which command is used for showing current date and time in Mysql command line tool?

90.
Which datatype means a variable length non binary string?