利用条件查询的使用格式
?
模型类.objects.filter(字段__查询功能=值)
等于
?
exact
包含
?
contains
以某某开头
?
startswith
以某某结尾
?
endswith
判断空
?
is null
成员判断
?
in
比较查询,大于
?
gt
比较查询,大于等于
?
gte
比较查询,小于
?
lt
比较查询,小于等于
?
lte
查询条件格式
模型类.objects.filter(字段__功能词 = 值)
查询条件的详情见后面的介绍
条件,等于, exact两种查询方式
》
》
查询卡通表中,名字中包含"七"的数据
条件,以某开头,startswith 条件,以某结尾,endswith》
条件,空查询 is null》
date字段__year = 年份
date字段__month = 月份
date字段__day = 日子
查年
查月