I have a table that contains 4 columns.
(1) item_id
(2) item_description
(3) color
(4) price
I would like to choose all of the items where "color = brown", then choose the one item with the lowest price and return its item_id .
$getitems = @mysql_query("SELECT * FROM items
WHERE color = brown");
??
please help...