Discuss the below:
Q: 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.