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;


Assuming that you follow the recommendations you gave in Problem 29, how would you rewrite the query?

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

Step by Step Answer:

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