I want to have the following order:
1
2
3
NULL
NULL
Currently I have the following query:
ItemInstance.objcts.filter(tv_series_id=item.pk).order_by('id')
This will order by id ASC, but NULL will come at the beginning. How would I push NULL to the end without doing a second query?