Home » MYSQL » Mysql miscellaneous » Question
  1. Find the missing clause from the query?
    CREATE VIEW Emp_1 AS
    SELECT firstname, lastname, Emp_id
    _________Emp;
    1. WHERE
    2. SELECT
    3. FROM
    4. All of above
    5. None of these
Correct Option: C

“CREATE VIEW” cannot be used without “FROM” clause.



Your comments will be displayed only after manual approval.