我想每月和每周显示一次数据,我已经搜索了很多关于此的内容,但是发现的内容并不能回答我的问题。这是我的桌子的样子:

---------------
+ tblcomplain +
---------------
+ id          +
+ status      +
+ complain    +
+ dateposted  +
---------------

最佳答案

如果您的列是dateposted,则其类型为timestamp / datetime:

对于每周报告:

select count(*) as totalWeeklycomplaints from tblcomplain group by week(dateposted);


对于月报表:

select count(*) as totalMothlycomplaints from tblcomplain group by month(dateposted);

关于javascript - 如何在Mysql中生成每月和每周报告?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49621924/

10-11 12:55