I don't know if I was slipped a pre-release version of this book or not but I think I am finding several errors in this book. For instance on Page 76 there is a query:
Code:
SELECT bk_id,
bk_title AS Title,
bk_price AS Price
FROM books
WHERE bk_price = 39.99 OR bk_price = 26.39;
And here are the results:
Quote:
bk_id Title Price
--------- ------------------------ -----
6 SQL Bible 49.99
9 SQL Functions 26.39
|