Home / CSE MCQs / DBMS MCQs :: Discussion

Discussion :: DBMS MCQs

  1. Which of the following statements creates a new table temp instructor that has the same schema as instructor.
  2. A.
    create table temp_instructor;
    B.
    Create table temp_instructor like instructor;
    C.
    Create Table as temp_instructor;
    D.
    Create table like temp_instructor;

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Create table temp_instructor like instructor;


Be The First To Comment