Que: In the following MySQL query, “person_1” belongs to which category of table in MySQL?

CREATE VIEW person_1 AS
SELECT fname, lname, person_id FROM person;
a. Permanent Tables
b. Virtual tables
c. Temporary tables
d. None of the mentioned
Answer: Virtual tables

Leave a Comment