1. 程式人生 > >OCP-1Z0-051 補充題庫 第44題 NATURAL JOIN自然連線

OCP-1Z0-051 補充題庫 第44題 NATURAL JOIN自然連線

You issue the following query:
SQL>SELECT p.prod_id,prod_name,prod_list_price, quantity_sold,cust_last_name
         FROM products p NATURAL JOIN sales s NATURAL JOIN customers c
         WHERE prod_id =148;
Which statement is true regarding the outcome of this query?
A. It executes successfully.
B. It produces an error because the NATURAL join can be used only with two tables.
C. It produces an error because a column used in the NATURAL join cannot have a qualifier.
D. It produces an error because all columns used in the NATURAL join should have a qualifier.

答案:C