Mysql max 查詢最大記錄所在行數據

首先,查找某字段的最大值app

select max(weight) from apple;


接着,根據最大值,查找其所在行
 code

select * from apple where weight =7888;

合併在一塊兒就是select

select * from apple where weight = (select max(weight) from apple);
相關文章
相關標籤/搜索