search

Home  >  Q&A  >  body text

mongodb - 如何查询所有时间落在某个月份上面

1,需要查询某个表中的数据为某个月份的时间。
2,比如说 要查询活动表中所有9月份的活动。所有年份都可以。只取落在9月份的活动
3,使用的是springdatamongo.用criteria如何组装这种条件。
4,聚合函数暂时不想使用,因为要用分页,聚合一次count不值

PHP中文网PHP中文网2757 days ago893

reply all(1)I'll reply

  • PHPz

    PHPz2017-05-02 09:24:22

    Use the time function to process the data to obtain the month as the condition:

    `where date_func(time) = 9`

    reply
    0
  • Cancelreply