django fields lookup methods

參考https://docs.djangoproject.com/en/1.9/ref/models/querysets/#field-lookups

基本長這樣:field__lookuptype=value

lt 小於, lte 小於等於

exact 準確查找,不加雙下劃線相當於exact

iexact 大小寫不敏感

contains 大小寫敏感的

icontains 大小寫不敏感

startwith, endwith

in 在給定的列表中

gt 大於,gte 大於等於

range <–>between and

date new in 1.9

isnull (True or False) <–> is null or is not null(in SQL)

__avg, __count, __sum, __max, __min, etc 聚集函數

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章