我想根据 fifo 到期日期从库存表中获取批次 ID。如何得到它。我写了一个查询,它给出了确切的批次,但批次 ID 不准确。基本上我想获取批次是先过期的产品股票表就像 Batch_ID | Product_ID | Quantity | Is_Expiry |Expiry_Date | Location_ID 6 | 148 | 90 | 1 | 2019-08-24 | 1 4 | 148 | 75 | 1 | 2019-09-13 | 1 2 | 148 | 0 | 1 | 2019-07-11 | 1我写这个查询Select batch_id,min(datediff(expiry_date,now())) as Remaining_Days From Stock Where Product_ID = '148' and quantity > 0 and Location_ID = '1'电流输出Batch_ID | Remaining_Days 4 | 56预期输出:Batch_ID | Remaining_Days 6 | 56
- 1 回答
- 0 关注
- 154 浏览
添加回答
举报
0/150
提交
取消