Home » MYSQL » Mysql Setup » Question
  1. In the following code, InnoDB is __________.
    CREATE TABLE Employee(
    Emp_name CHAR(30),
    Emp_id INT(10),
    PRIMARY KEY (Emp_id)
    ) ENGINE = InnoDB;
    1. table name
    2. reference engine
    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.