

MCQOPTIONS
Saved Bookmarks
1. |
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» C. Create Table as temp_instructor; | |