gpt4 book ai didi

MySQL 日期范围 : First order + 6 months

转载 作者:行者123 更新时间:2023-11-29 12:22:41 26 4
gpt4 key购买 nike

我正在使用 MySQL Workbench 来运行我的查询。

我想运行几个不同的日期查询,我不知道这在 SQL 中是否可行。

1) 运行从系统中第一个日期到 X 日期的报告。
如何在计算中找到第一个订单 ID 或日期?
我知道如果我有开始日期,我可以使用:
其中 T5.date_purchased 介于“2005-01-01”和“2015-12-31”之间 或:
其中 T5.date_purchased 介于“2005-01-01”和 CURDATE() + INTERVAL 1 天之间

更新
----- 问题 2 已得到解答(尽管有任何改进) -----

2) 运行从产品第一次出现到 + 6 个月(查看订单的前 6 个月)的报告,即:小部件 1(第一个订单)+ 从订单日期算起 6 个月。类似于:
其中 widget=widgetID AND widget1 首次购买与 +6 个月之间的日期

更新:这不起作用,但这就是我的想法:
其中 (T3.products_id = 39) 和 DATE_ADD((T1.products_date_add), INTERVAL 1 MONTH)

我会使用我的 P3.products_date_added, 但是,我不知道如何正确地将它用作上述内容的一部分。

这两种情况都可能吗,我知道如何在知道日期时提取记录,我只是不知道是否可以通过“日期未知”来完成,或者是否必须运行“预报告”第一的。或者是Excel中的后处理过滤器?

提前谢谢您。

最佳答案

回答问题#2:

2) Run the report from the first time a product shows up, to + 6 months (to see it's first 6 months of order) ie: Widget 1 (first order) + 6 months from order date. Something like:
where widget=widgetID AND date between widget1's first purchase and +6 months

答案:

-- Use for specific comparisons of products OR for the first X months of sales
where (T3.products_id = 39) and T5.date_purchased between T1.products_date_added and DATE_ADD((T1.products_date_added), INTERVAL 2 MONTH)
-- This results in PID: release: 10th July, +2 months; 10th Sep. 31 units.

OR
-- (T3.products_id = 11 or T3.products_id = 39) gives the results of the 2 product orders from release date to the first 2 months of each
-- (T3.products_id) gives all products, their first 2 months of release
-- (T3.products_id = 39) gives specific product release sales

-- Inspired by: http://stackoverflow.com/questions/28788691/mysql-range-between-dates-first-order-6-months?noredirect=1#comment45853546_28788691

关于MySQL 日期范围 : First order + 6 months,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28788691/

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