select a.*
from table a
where 10 > (select count(*) from table b where b.dif_distance = a.dif_distance and b.id > a.id )
order by a.id
-- 按照dif_distance分组, 取前10条,"b.id > a.id" 表示取按照id取最后的十条
select a.*
from table a
where 10 > (select count(*) from table b where b.dif_distance = a.dif_distance and b.id > a.id )
order by a.id
-- 按照dif_distance分组, 取前10条,"b.id > a.id" 表示取按照id取最后的十条
针对有 分类字段
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M