'What will Max return from an empty record?

what will the max return if particular customer has no order__id, below is the code in views.py in django,

queryset = Customer.objects.annotate(last_order_id=Max('order__id'))

screenshot of the table



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source