我需要查询 MySQL 5.5 的帮助
在按 location_id、count_number、try_number 对行进行排序后,我试图只为 2 列(tan、location_id)的组合选择 1 行。所以基本上我想要一个只返回下图中黄色行的查询。每个 tan/location_id 组合只有 1 条记录,该组中“count_number”和“try_number”最高。
这是我目前的查询。
select tan, quantity, count_number, try_number, location_id
from inventario_inventoryregistry
where tan = '53-100554-01'
order by location_id desc, count_number desc, try_number desc;