Question: Based on the following query: SELECT P_CODE, P_DESCRIPT, P_PRICE, PRODUCT.V_CODE, V_STATE FROM PRODUCT P, VENDOR V WHERE P.V_CODE = V.V_CODE AND V_STATE = NY AND
Based on the following query:
SELECT P_CODE, P_DESCRIPT, P_PRICE, PRODUCT.V_CODE, V_STATE
FROM PRODUCT P, VENDOR V
WHERE P.V_CODE = V.V_CODE
AND V_STATE = ‘NY’
AND V_AREACODE = ‘212’;
ORDER BY P_PRICE;
Write the commands required to create the indexes you recommended in Problem 22.
Step by Step Solution
3.54 Rating (171 Votes )
There are 3 Steps involved in it
CREATE INDEX VENDNDX1 ON VENDO... View full answer
Get step-by-step solutions from verified subject matter experts
