Seemingly simple MySQL question, but I\'ve never had to do this before..
I have two tables, items and prices, with a one-to-many relationship.
Items
SELECT top 1 items.id, items.name, prices.price, prices.id FROM items LEFT JOIN prices ON items.id = prices.item_id ORDER BY prices.price ASC