Which Of The Following Statements Create A New Empty Table #270
Which of the following statement(s) create a new empty table?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Subqueries - SQL Subqueries - Quiz No.1.
Which of the following statement(s) create a new empty table?
Select * into newtable From oldtable;
Select * into newtable From oldtable Where 3=4;
Select * into newtable From oldtable Where condition (true for at least once);
Select * into newtable From oldtable Where False;