繁体   English   中英

SQL查询可根据所选日期查找值,但如果所选日期没有值,则会查找最新值

[英]SQL query to find values based on selected date, but will find the latest value if there's no value on the selected date

我想获取当前日期的分支值,但是如果当前日期没有任何值,请获取其最新读数的值。

例如,所选日期为2013年9月29日。

我有三个分支。

这些分支机构中有两个的销售价值为2013年9月29日。

一个分支没有编码值,但是此分支的最新日期为2013年8月30日。

换一种说法,

Branch 1 - Sep 29 - value is 150
Branch 2 - Sep 29 - value is 150
Branch 3 - Sep 29 - value is 0

我不能只做150 + 150 + 0 = 300

我要做的是:

Branch 1 - Sep 29 - value is 150
Branch 2 - Sep 29 - value is 150
Branch 3 - Sep 29 - value is 0, so find the latest reading, system finds August 30 with value 250.

所以现在我可以做150 + 150 + 250 = 550

当前,我有以下SQL查询:

SELECT 
    user_id, product_code, uom, inventory_date, account_id, branch_id, beginning_inventory 

FROM 
    inventory_mgmt_uploads 

WHERE 
    user_id = '137'
    AND product_code = 'GRO_AL'
    AND uom = 'box'
    AND account_id = '3'
    AND inventory_date <= '2013-09-29'

ORDER BY
    inventory_date

上面查询的结果是:

在此处输入图片说明

现在,我要实现的结果是:

在此处输入图片说明

我试过的是此查询:

SELECT 
    user_id, product_code, uom, inventory_date, account_id, branch_id, beginning_inventory 

FROM 
    inventory_mgmt_uploads 

WHERE 
    user_id = '137'
    AND product_code = 'GRO_AL'
    AND uom = 'box'
    AND account_id = '3'
    AND inventory_date <= '2013-09-29'

GROUP BY
    branch_id

ORDER BY
    inventory_date

但这给了我:

在此处输入图片说明

即使我尝试按branch_id desc或ventory_date desc进行订单,我仍然无法获得所需的输出。 任何想法什么是正确的查询? TIA!

尝试这个::

Select * from inventory_mgmt_uploads outerimu 
INNER JOIN 
  (  SELECT 
        user_id, MIN(inventory_date) as minInvent, branch_id as Bid, MIN(beginning_inventory) as Binvent

    FROM 
        inventory_mgmt_uploads 

    WHERE 
        user_id = '137'
        AND product_code = 'GRO_AL'
        AND uom = 'box'
        AND account_id = '3'
        AND inventory_date <= '2013-09-29'

    GROUP BY
        branch_id
) as tempTab
    on (tempTab.user_id = outerimu.user_id and tempTab.minInvent=outerimu.inventory_date AND tempTab.Binvent =outerimu.beginning_inventory and tempTab.Bid= outerimu.branch_id)
    ORDER BY
    inventory_date

您也可以尝试以下操作:

SELECT a.USER_ID, a.PRODUCT_CODE, a.UOM, MAX(a.INVENTORY_DATE), a.ACCOUNT_ID, a.BRANCH_ID, (
  SELECT BEGINNING_INVENTORY FROM test 
  WHERE user_id = a.user_id
  AND product_code = a.product_code
  AND uom = a.uom
  AND inventory_date = MAX(a.inventory_date)
  AND account_id = a.account_id
  AND branch_id = a.branch_id
) as BEGINNING_INVENTORY
FROM test as a
WHERE a.INVENTORY_DATE <= '2013-09-29'
GROUP BY a.USER_ID, a.product_code, a.uom, a.account_id, a.branch_id

Sashi Kant提到的查询可以正常工作,因为您具有顺序数据(beginning_inventory随着日期减少)。 如果数据被加密,上述方法将无法提供正确的数据。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM