Page 503: keyword SELECT missing
On page 503, at the bottom of the page, after keyword UNION the keyword SELECT is missing. The code should read:
SELECT -1 AS ProductCategoryID, '(All Categories)' AS Name
UNION
SELECT ProductCategoryID, NAME
FROM Production.ProductCategory
ORDER BY Name
|