To sort QuerySets, Django uses the order_by()
method:
Order the result alphabetically by firstname:
mydata = Member.objects.all().order_by('firstname').values()
Run Example »
In SQL, the above statement would be written like this:
SELECT * FROM members ORDER BY firstname;
By default, the result is sorted ascending (the lowest value first), to change the direction to descending (the highest value first), use the minus sign (NOT), -
in front of the field name:
Order the result firstname descending:
mydata = Member.objects.all().order_by('-firstname').values()
Run Example »
In SQL, the above statement would be written like this:
SELECT * FROM members ORDER BY firstname DESC;
To order by more than one field, separate the fieldnames with a comma in the order_by()
method:
Order the result first by lastname ascending, then descending on id:
mydata = Member.objects.all().order_by('lastname', '-id').values()
Run Example »
In SQL, the above statement would be written like this:
SELECT * FROM members ORDER BY lastname ASC, id DESC;
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!