Respuesta :
Answer:
Option D All of the above are valid statements.
Explanation:
CREATE TABLE anothernewtable (newtableid VARCHAR2(2));
CREATE TABLE anothernewtable (date, anotherdate) AS (SELECT orderdate, shipdate FROM orders);
CREATE TABLE anothernewtable (firstdate, seconddate) AS (SELECT orderdate, shipdate FROM orders);
All these statements are valid for SQL
Answer:
b. CREATE TABLE anothernewtable (date, anotherdate)
AS (SELECT orderdate, shipdate FROM orders);
Explanation:
b part query is not valid SQL statement.