Solved

Contents of the BOOKS Table​

Question 56

Multiple Choice

Contents of the BOOKS table​
Contents of the BOOKS table​    -Based on the contents of the BOOKS table,which of the following will display the date of the book with the earliest publication date?​ A)  ​SELECT MIN(pubdate)  FROM books; B)  SELECT title FROM books WHERE pubdate = MIN(pubdate) ;​ C)  ​SELECT title FROM books WHERE pubdate = MINIMUM(pubdate) ; D)  ​SELECT MINIMUM(pubdate)  FROM books;
-Based on the contents of the BOOKS table,which of the following will display the date of the book with the earliest publication date?​


A) ​SELECT MIN(pubdate)
FROM books;
B) SELECT title
FROM books
WHERE pubdate = MIN(pubdate) ;​
C) ​SELECT title
FROM books
WHERE pubdate = MINIMUM(pubdate) ;
D) ​SELECT MINIMUM(pubdate)
FROM books;

Correct Answer:

verifed

Verified

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

Related Questions