Solved

Contents of the BOOKS Table​

Question 105

Multiple Choice

Contents of the BOOKS table​
Contents of the BOOKS table​    -Based upon the contents of the BOOKS table,which of the following will determine the number of books provided by publisher 3?​ A)  ​SELECT SUM(isbn)  FROM books WHERE pubid = 3; B)  ​SELECT TOTAL(*)  FROM books WHERE pubid = 3; C)  SELECT COUNT(pubid)  FROM books WHERE pubid = 3; D)  ​none of the above
-Based upon the contents of the BOOKS table,which of the following will determine the number of books provided by publisher 3?​


A) ​SELECT SUM(isbn)
FROM books
WHERE pubid = 3;
B) ​SELECT TOTAL(*)
FROM books
WHERE pubid = 3;
C) SELECT COUNT(pubid)
FROM books
WHERE pubid = 3;
D) ​none of the above

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions