依照entry_date從小到大查詢數據,可以寫成:
Content.objects.order_by('entry_date')
從大到小排序:
Content.objects.order_by('-entry_date')
下面介紹其他種類的排序
隨機排序:
Content.objects.order_by('?')
但是order_by(?)這種方式也許expensive並且slow,這取決於後端資料庫。
依照關係表的欄位排序
class Category(Base): code = models.CharField(primary_key=True,max_length=100) title = models.CharField(max_length = 255) class Content(Base): title = models.CharField(max_length=255) description = models.TextField() category = models.ForeignKey(Category, on_delete=models.CASCADE)
# 按照Category的字段code,对Content进行排序,只需要外键后加双下划线 Content.objects.order_by('category__title') # 如果只是按照外键来排序,会默认按照关联的表的主键排序 Content.objects.order_by('category') # 上面等价于 Content.objects.order_by('category__code') # 双下划线返回的是join后的结果集,而单下划线返回的是单个表的集合 Content.objects.order_by('category_title')
Note: 無論是單下劃線或雙下劃線,我們都可用{{ content.category.title }}在前端取得到關聯表的資料。
【相關教學推薦】
1. 《Python免費影片教學》
#2. Python基礎入門教學
#3. Python在資料科學中的應用
#以上是介紹Django查詢資料庫時各種種類的排序的詳細內容。更多資訊請關注PHP中文網其他相關文章!