doubo82706 2019-03-16 17:50
浏览 97
已采纳

MySQL PHP选择行数在日期范围内

I have a MySQL table for product orderings named TABLE1.

Date means the date purchase has been made

The table has other columns that currently have no influence.

PRODUCT_ID | DATE      | other columns
    3      |2018-02-01 | other values
    3      |2018-02-03 | other values
    3      |2018-02-07 | other values
    3      |2018-02-07 | other values
    3      |2018-03-02 | other values

I know that the first time the product 3 has been ordered, is 2018-02-01

SELECT DATE FROM TABLE1 WHERE PRODUCT_ID = '3' ORDER BY DATE ASC LIMIT 1

How do I select count of product orderings per day within range of 2018-02-01 and 2019-03-16 (today) so that I could get a table like that:

DATE       | ORDERS_PER_DAY
2018-02-01 | 1
2018-02-02 | 0
2018-02-03 | 1
...
2018-02-07 | 2
...
2018-03-02 | 1
...
2018-03-15 | 0
2018-03-16 | 0

Thanks for help!

  • 写回答

2条回答 默认 最新

  • douxue4242 2019-03-16 17:57
    关注

    You can simply use GROUP BY clause to do it.

    SELECT `DATE`, COUNT(`PRODUCT_ID`) AS ORDERS_PER_DAY
    FROM TABLE1
    WHERE `DATE` BETWEEN '2018-02-01' AND CURDATE() 
    GROUP BY `DATE`
    

    This query will result in filtering the records on your required date range and then grouping it by each day where there is data.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问如何在openpcdet上对KITTI数据集的测试集进行结果评估?
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路
  • ¥15 phython读取excel表格报错 ^7个 SyntaxError: invalid syntax 语句报错