Discussion :: DBMS MCQs
- Which of the following statements creates a new table temp instructor that has the same schema as instructor.
A.
create table temp_instructor;
|
B.
Create table temp_instructor like instructor;
|
C.
Create Table as temp_instructor;
|
D.
Create table like temp_instructor;
|
Answer : Option B
Explanation :
Create table temp_instructor like instructor;
Be The First To Comment