Home » MYSQL » MySQL Database Operations » Question
  1. What is InnoDB in the following code?
    CREATE TABLE Employee (
    Emp_name CHAR(30),
    Emp_id INT,
    PRIMARY KEY (Emp_id)
    ) ENGINE = InnoDB;
    1. reference engine
    2. table name
    3. storage engine
    4. database name
    5. None of these
Correct Option: C

‘InnoDB’ is the name of the ‘storage engine’ for the above table. The ‘ENGINE’ clause is used to specify the name of the storage engine that MySQL should use to handle the table being created. MySQL has several storage engines with its own properties.



Your comments will be displayed only after manual approval.