Q. In the following SQL code, InnoDB is . . . . . . . .
CREATE TABLE student (
name CHAR(30),
student_id INT,
PRIMARY KEY (student_id)
) ENGINE = InnoDB;
β
Correct Answer: (D)
storage engine
Explanation: In the provided SQL code snippet, the keyword "ENGINE" is used to specify the storage engine for the MySQL table being created. We need to identify what "InnoDB" represents in this context.