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

  • (A) database name
  • (B) BINARY
  • (C) reference engine
  • (D) storage engine
πŸ’¬ Discuss
βœ… 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.
Explanation by: Ram Avtar Sharma
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.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
89
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Ram Avtar Sharma
Publisher
πŸ“ˆ
99%
Success Rate