Use SQL to compete the following:
What is the lowest book price in the database? For example, this is
what the database should look like:
TITLE MIN(PRICE)
Nine Stories 5.99
Fanny and Zooey 5.99
The Catcher in the Rye 5.99
This database has 34 books with prices starting from 25.50 to 5.99. This
is what I have so far but it isn’t working:
SELECT TITLE
FROM BOOK
WHERE SELECT MIN(PRICE)
;
This example is not working because I keep getting errors in MYSQL. Any
suggestion would be greatly appreciated. Thanks.
