Based on the following query: SELECT CUS_CODE, MAX(LINE_UNITS*LINE_PRICE) FROM CUSTOMER NATURAL JOIN INVOICE NATURAL JOIN LINE WHERE

Question:

Based on the following query:

SELECT        CUS_CODE, MAX(LINE_UNITS*LINE_PRICE)

FROM          CUSTOMER NATURAL JOIN INVOICE NATURAL JOIN LINE

WHERE        CUS_AREACODE = ‘615’

GROUP BY  CUS_CODE;


How would you rewrite the query to ensure that the index you created in Problem 31 is used?

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: