Solved

Contents of BOOKS Table

Question 88

Multiple Choice

Contents of BOOKS table
Contents of BOOKS table    ​ -Based upon the contents of the BOOKS table in the accompanying figure,which of the following queries will return all books that cost at least $25.00?​ A)  ​SELECT * FROM books WHERE cost > $25.00; B)  ​SELECT * FROM books WHERE cost >= 25.00; C)  ​SELECT * FROM books WHERE cost >= $25.00; D)  ​none of the above
-Based upon the contents of the BOOKS table in the accompanying figure,which of the following queries will return all books that cost at least $25.00?​


A) ​SELECT * FROM books
WHERE cost > $25.00;
B) ​SELECT * FROM books
WHERE cost >= 25.00;
C) ​SELECT * FROM books
WHERE cost >= $25.00;
D) ​none of the above

Correct Answer:

verifed

Verified

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

Related Questions