$max="SELECT id,MAX(price) as price FROM bid where sub_id = '".$_SESSION['bid']."' order by added asc";
$maxquery= mysql_query($max) or die (died);
while($row = mysql_fetch_assoc($maxquery)) {
echo $row['price'];
echo $row['id'];
}
อยากให้โชว์ค่า Max และก็ id นะค่ะ แต่ตอนนี้ id ไม่โชว์ขึ้นมา
select id, cat_id, price
from (select cat_id mx_cat, max(price) prz from table group by cat_id ) as tmp
left join table on price = prz and cat_id=mx_cat