What could be the reason?

View the Exhibit and examine the structure of the CUSTOMERS table.
NEW_CUSTOMERS is a new table with the columns CUST_ID, CUST_NAME and CUST_CITY
that have the same data types and size as the corresponding columns in the CUSTOMERS table.
Evaluate the following INSERT statement:

The INSERT statement fails when executed. What could be the reason?

View the Exhibit and examine the structure of the CUSTOMERS table.
NEW_CUSTOMERS is a new table with the columns CUST_ID, CUST_NAME and CUST_CITY
that have the same data types and size as the corresponding columns in the CUSTOMERS table.
Evaluate the following INSERT statement:

The INSERT statement fails when executed. What could be the reason?

A.
The VALUES clause cannot be used in an INSERT with a subquery.

B.
Column names in the NEW_CUSTOMERS and CUSTOMERS tables do not match.

C.
The WHERE clause cannot be used in a subquery embedded in an INSERT statement.

D.
The total number of columns in the NEW_CUSTOMERS table does not match the total number
of columns in the CUSTOMERS table.

Explanation:
Copying Rows from Another Table
Write your INSERT statement with a subquery:
Do not use the VALUES clause.
Match the number of columns in the INSERT clause to those in the subquery. Inserts all the rows
returned by the subquery in the table, sales_reps.



Leave a Reply 0

Your email address will not be published. Required fields are marked *