Q. What is InnoDB in the following MySQL code?
CREATE TABLE student (
name CHAR(30),
student_id INT,
PRIMARY KEY (student_id)
) ENGINE = InnoDB;
β
Correct Answer: (D)
storage engine
Explanation: This code creates a table called "student" in a MySQL database.