Q. What is InnoDB in the following MySQL code?
CREATE TABLE student (
name CHAR(30),
student_id INT,
PRIMARY KEY (student_id)
) ENGINE = InnoDB;

  • (A) database name
  • (B) 1
  • (C) reference engine
  • (D) storage engine
πŸ’¬ Discuss
βœ… Correct Answer: (D) storage engine
Explanation: This code creates a table called "student" in a MySQL database.
Explanation by: Vijay Sangwan
This code creates a table called "student" in a MySQL database.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
124
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Vijay Sangwan
Publisher
πŸ“ˆ
84%
Success Rate