Multiple Choice
Contents of the BOOKS table
-Based upon the contents of the BOOKS table,which of the following will display the retail price of the most expensive book provided by publisher 3?
A) SELECT MAX(retail)
FROM books
GROUP BY pubid;
B) SELECT MAXIMUM(retail)
FROM books
WHERE pubid = 3;
C) SELECT MAX(retail)
FROM books
WHERE pubid = 3;
D) SELECT MAXIMUM(retail)
FROM books
HAVING pubid = 3;
Correct Answer:

Verified
Correct Answer:
Verified
Q46: AVG,COUNT,and STDDEV are all considered group functions.
Q47: The HAVING clause serves as the <u>WHERE</u>
Q48: Column aliases can be used in the
Q49: The _ function is used to determine
Q50: The _ function can be used to
Q52: The AVG function can be used with
Q53: By default,the COUNT function uses the <u>DISTINCT</u>
Q54: Functions that return one result per group
Q55: The SUM function can only be used
Q56: Contents of the BOOKS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg"