我需要帮助查询MySQL5.5
在按location\u id、count\u number和try\u number对行进行排序之后,我尝试对每两列的组合(tan、location\u id)只选择一行。所以基本上我想要一个只返回下图中黄色行的查询。每个tan/location\u id组合只有一条记录,并且在该组中具有最高的“count\u number”和“try\u 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;
2条答案
按热度按时间tjrkku2a1#
我想这正是你想要的:
slhcrj9b2#