Which of the following SQL statements determines how many total customers were referred by other customers? a.

Question:

Which of the following SQL statements determines how many total customers were referred by other customers?
a. SELECT customer#, SUM (referred)

FROM customers
GROUP BY customer#;

b. SELECT COUNT (referred)

FROM customers;

c. SELECT COUNT(*)

FROM customers;

d. SELECT COUNT(*)

FROM customers
WHERE referred IS NULL;

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

Step by Step Answer:

Related Book For  book-img-for-question

Oracle 12c SQL

ISBN: 978-1305251038

3rd edition

Authors: Joan Casteel

Question Posted: