159. 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:
INSERT INTO new_customers (cust_id, cust_name, cust_city)
VALUES(SELECT cust_id,cust_first_name' 'cust_last_name,cust_city 去掉
FROM customers
WHERE cust_id > 23004);
The INSERT statement fails when executed. What could be the reason?
A. The VALUES clause cannot be used in an INSERT with a subquery. values后面不能跟子查询,或者直接不要VALUES
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.
本文探讨了Oracle数据库中使用INSERT语句时常见的错误之一:在包含子查询的INSERT语句中误用VALUES关键字。通过具体示例说明了正确的语法,并解释了为何在子查询中不需要VALUES关键字。
7143

被折叠的 条评论
为什么被折叠?



