当前位置: 代码迷 >> Oracle认证考试 >> ocp考题的有关问题,求解
  详细解决方案

ocp考题的有关问题,求解

热度:5836   发布时间:2013-02-26 00:00:00.0
ocp考题的问题,求解
163. View the Exhibit and examine the structure of ORD and ORD_ITEMS tables. In the ORD table, the PRIMARY KEY is ORD_NO and in the ORD_ITEMS tables the composite PRIMARY KEY is (ORD_NO, ITEM_NO). Which two CREATE INDEX statements are valid? (Choose two.) 
A. CREATE INDEX ord_idx ON ord(ord_no); 
B. CREATE INDEX ord_idx ON ord_items(ord_no); 
C. CREATE INDEX ord_idx ON ord_items(item_no); 
D. CREATE INDEX ord_idx ON ord,ord_items(ord_no, ord_date,qty); 
Answer: BC 

个人觉得 d的 语法是错了,可是 A 错在哪里?

------解决方案--------------------------------------------------------
ord_no是ord的主键,无须再建索引吧
------解决方案--------------------------------------------------------
刚试了下,会报索引已存在的
  相关解决方案