Thank you Sxooter, but it looks like I need to clarify my problem more.
If I add "manufacturer_name, model_name" to the "order by" line per your suggestion, I do get the latest 50 entries, but they are sorted by review_date first and then within the review_date, by manufacturer_name and model_name.
What I need from the query is for it to return the latest 50 digital cameras sorted by manufacturer_name and model_name. They way for me to tell that an entry in the database is the latest entry is by the review_date, which is why I am currently sorting on the review_date and then cutting off the list at the 50th record.
How can I modify my select statement so that it returns the latest 50 entries sorted by manufacturer_name and model_name?
Thanks!