标签:很多 ack 取出 select mamicode sele 子查询 span style
把价格最高的商品取出来???
select * from goods order by goods_price desc limit 1;
可是价格最高的可能有很多条数据呢?
所以,换一种方式
1,查出最高的价格
select max(goods_price) from goods;
2,根据最高价查询
select * from goods where goods_price = (select max(goods_price) from goods);
标签:很多 ack 取出 select mamicode sele 子查询 span style
原文地址:https://www.cnblogs.com/zhang19950924/p/13218264.html