Which two CREATE INDEX statements are valid?

View the Exhibit and examine the structure of ORD and ORD_ITEMS tables.
The ORD_NO column is PRIMARY KEY in the ORD table and the ORD_NO and ITEM_NO columns are composite PRIMARY KEY in the ORD_ITEMS table.
Which two CREATE INDEX statements are valid? (Choose two.)


A. CREATE INDEX ord_idx1ON ord(ord_no);
B. CREATE INDEX ord_idx2ON ord_items(ord_no);
C. CREATE INDEX ord_idx3ON ord_items(item_no);
D. CREATE INDEX ord_idx4ON ord,ord_items(ord_no, ord_date,qty);

Download Printable PDF. VALID exam to help you PASS.

2 thoughts on “Which two CREATE INDEX statements are valid?

  1. “why there is not a answer A. CREATE INDEX ord_idx1ON ord(ord_no); its also true”
    No, because ord_no its a primary key in ord table, so its have on index created automaticly when this constraint was created with the table. d

Leave a Reply

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


The reCAPTCHA verification period has expired. Please reload the page.