When using order_by('created') on a comments queryset, what is the default sort direction and how can this relate to query efficiency?
Ascending and always causes a full table scan
Descending and requires reverse() for ascending
Ascending which shows oldest first and can use an index on the field for efficient sorting
Random with no index impact
This question is part of this quiz :
Python | Django QuerySets