Hi,
Firstly the order by clause in a subquery is irrelevant and should be removed. What you need to do is to have the ORDER BY statement on the primary query. Using the IN is filtering your rows but you actually need to join the two tables so that you can use the column you want to order by:
Code:
SELECT p.* FROM Products p, SlidesFeaturedList s WHERE p.Product_ID = s.Product_ID
ORDER BY s.AA