A

Admin • 833K Points
Coach

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
  • Correct Answer - Option(D)
  • Views: 33
  • Filed under category MySQL
  • Hashtags:

Explanation by: Admin

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.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.