Home » MYSQL » Mysql miscellaneous » Question
  1. In the following query, “Employee_1” belongs to which category of table in Mysql?
    CREATE VIEW Employee_1 AS
    SELECT firstname, lastname, Employee_id FROM Employee;
    1. Virtual tables
    2. Temporary tables
    3. Permanent Tables
    4. All of above
    5. None of these
Correct Option: A

“CREATE VIEW” creates “Virtual tables” only.



Your comments will be displayed only after manual approval.