Mysql统计全班成绩的前三名
2018-10-25 本文已影响0人
凉良凉_8b5e
select * from table
where mark >= (SELECT DISTINCT(mark) FROM te ORDER BY mark desc LIMIT 2,1)
查询的结果如图:
select * from table
where mark >= (SELECT DISTINCT(mark) FROM te ORDER BY mark desc LIMIT 2,1)
查询的结果如图: