The SQL syntax which retrieves the book title and retail price for books lesser than the average price of all books by just Lee. The SQL command is written thus ;
SELECT title, retail
FROM books
WHERE retail <
(SELECT AVG(retail)
FROM books);
Hence, the SQL command will display all columns where retail price is below the average price of books with only the book title and retail price column included.
Learn more :https://brainly.com/question/25655426