我想查询具有今天日期的记录。下面给出了我正在尝试的 cql 代码
cron = Cron.objects.filter(user_id = 5)
cron= cron.filter(created_at__gte = datetime.combine(datetime.now().date(), datetime.min.time()))
cron= cron.allow_filtering()
result = cron.first()
我的表中没有今天的记录,仍然在查询结果中获取昨天的记录。
表格中日期的格式为“2015-10-21 08:29:41-0400”(时间戳)。
我在 cqlengine 文档中没有找到任何关于这个案例的参考资料。如果有人可以帮助你会很棒。