Changes between Initial Version and Version 1 of Ticket #31549
- Timestamp:
- May 8, 2020, 4:40:45 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31549 – Description
initial v1 9 9 queryset = MyModel.objects.filter(import_at__month=5, import_at__year=import_at[0]) 10 10 print(queryset.count()) 11 >>>411 It will print 4 12 12 13 13 but when I used connection, I got diffrent result: … … 18 18 print(len(cursor.fetchall())) 19 19 20 >>>020 It will print 0 21 21 22 22 I got 0 !