When you run the 'Alphabetical list of products' view the products are not in alphabetical order. here is the code.
create view "Alphabetical list of products" AS
SELECT Products.*, Categories.CategoryName
FROM Categories INNER JOIN Products ON Categories.CategoryID = Products.CategoryID
WHERE (((Products.Discontinued)=0))
how could this view be changed so that it lists them correctly?