gpt4 book ai didi

sql - 我需要显示每月库存数据

转载 作者:行者123 更新时间:2023-12-04 06:42:48 26 4
gpt4 key购买 nike

我有一个表格,如下所示,用于库存详细信息。

库存表。

InventoryTableID  DateCreated  quantity  ItemName
-------------------------------------------------
1 2010-02-04 12 abc
2 2010-03-10 4 abc
3 2010-03-13 5 xyz
4 2010-03-13 19 def
5 2010-03-17 15 abc
6 2010-03-29 15 abc
7 2010-04-01 22 xyz
8 2010-04-13 5 abc
9 2010-04-15 6 def

如果我的管理员想知道 2010 年 4 月(即 2010 年 4 月 1 日 - 2010 年 4 月 30 日)的库存详细信息,请从上表中选择

我需要如下所示的输出。
  • 库存如上 2010 年 4 月 1 日
    ItemName  Datecreated   qty
    ----------------------------
    abc 2010-03-29 15
    xyz 2010-04-01 22
    def 2010-03-13 19
  • 库存如上 2010 年 4 月 30 日
    ItemName  Datecreated  qty
    ---------------------------
    abc 2010-04-13 5
    xyz 2010-04-01 22
    def 2010-04-15 6
  • 最佳答案

    对于您的第一个结果集,使用 @YourDataParam = '2010-04-01' 运行。对于第二组,使用“2010-04-30”。

    ;with cteMaxDate as (
    select it.ItemName, max(it.DateCreated) as MaxDate
    from InventoryTable it
    where it.DateCreated <= @YourDataParam
    group by it.ItemName
    )
    select it.ItemName, it.DateCreated, it.qty
    from cteMaxDate c
    inner join InventoryTable it
    on c.ItemName = it.ItemName
    and c.MaxDate = it.DateCreated

    关于sql - 我需要显示每月库存数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4044595/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com