05:将年月日按年月分类

Posted Roger`C

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了05:将年月日按年月分类相关的知识,希望对你有一定的参考价值。

from django.db.models.functions import TruncMonth

from django.db.models import Count

 

Sales.objects

    .annotate(month=TruncMonth(\'timestamp\'))  # Truncate to month and add to select list

    .values(\'month\')                          # Group By month

    .annotate(c=Count(\'id\'))                  # Select the count of the grouping

    .values(\'month\', \'c\')                     # (might be redundant, haven\'t tested) select month and count 

 

以上是关于05:将年月日按年月分类的主要内容,如果未能解决你的问题,请参考以下文章

ASP 如何将新闻记录按每天记录数分段显示。并统计每天记录数,年月日分段显示 表news 代码如何写!

Python 按当前日期(年月日)创建多级目录的方法

java查询数据库按年月日

邵伟华的时间卦算法

sql 怎么把年月日转化成年月

如何在Postgres中按年月按最大(日期)组获取行?