Based on the following query: SELECT P_CODE, SUM(LINE_UNITS) FROM LINE GROUP BY P_CODE HAVING SUM(LINE_UNITS) > (SELECT

Question:

Based on the following query:

SELECT        P_CODE, SUM(LINE_UNITS)

FROM          LINE

GROUP BY  P_CODE

HAVING       SUM(LINE_UNITS) > (SELECT MAX(LINE_UNITS) FROM LINE);


What is the likely data sparsity of the LINE_UNITS column?

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

Step by Step Answer:

Related Book For  book-img-for-question

Database Systems Design Implementation and Management

ISBN: 978-1337627900

13th edition

Authors: Carlos Coronel, Steven Morris

Question Posted: