1.先排序,再查找 select * from 表名 order by 字段名 asc limit 0,1 2.使用min,max函数 select * from 表名 where (字段名 in (select max(字段名) from 表名))