今天的Django教训汇总:通过 Q 对象完成复杂查询-20211020
程序员文章站
2022-06-20 20:23:54
...
通过 Q 对象完成复杂查询
链接
在类似 filter() 中,查询使用的关键字参数是通过 “AND” 连接起来的。如果你要执行更复杂的查询(例如,由 OR 语句连接的查询),你可以使用 Q 对象。
一个 Q 对象 (django.db.models.Q) 用于压缩关键字参数集合。这些关键字参数由前文 “Field lookups” 指定。
例如,该 Q 对象压缩了一个 LIKE 查询:
from django.db.models import Q
Q(question__startswith='What')
Q 对象能通过 & 和 | 操作符连接起来。当操作符被用于两个 Q 对象之间时会生成一个新的 Q 对象。
例如,该语句生成一个 Q 对象,表示两个 “question_startswith” 查询语句之间的 “OR” 关系:
Q(question__startswith='Who') | Q(question__startswith='What')
这等价于以下 SQL WHERE 字句:
WHERE question LIKE 'Who%' OR question LIKE 'What%'
你能通过 & 和 | 操作符和括号分组,组合任意复杂度的语句。当然, Q 对象也可通过 ~ 操作符反转,允许在组合查询中组合普通查询或反向 (NOT) 查询:
Q(question__startswith='Who') | ~Q(pub_date__year=2005)
每个接受关键字参数的查询函数 (例如 filter(), exclude(), get()) 也同时接受一个或多个 Q 对象作为位置(未命名的)参数。若你为查询函数提供了多个 Q 对象参数,这些参数会通过 “AND” 连接。例子:
Poll.objects.get(
Q(question__startswith='Who'),
Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6))
)
...粗略地转为 SQL:
SELECT * from polls WHERE question LIKE 'Who%'
AND (pub_date = '2005-05-02' OR pub_date = '2005-05-06')
查询函数能混合使用 Q 对象和关键字参数。所有提供给查询函数的参数(即关键字参数或 Q 对象)均通过 “AND” 连接。然而,若提供了 Q 对象,那么它必须位于所有关键字参数之前。例子:
Poll.objects.get(
Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6)),
question__startswith='Who',
)
……会是一个有效的查询,等效于前文的例子;
但是:
# INVALID QUERY
Poll.objects.get(
question__startswith='Who',
Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6))
)
……却是无效的。
参见Django 单元测试中的 OR 查询实例 展示了 Q 的用法。
我的例子:employee_list = Employee.objects.filter(Q(dept_code__contains=‘MZV’) | Q(dept_code__contains=‘MZ3’))
views.py
# 建立查询结果界面
def search_results(request):
if 'q' in request.GET and request.GET['q']:
q = request.GET['q']
employee_list = Employee.objects.filter(eid=q)
return render(request, 'PPDASH/search_results.html',context={'employee_list': employee_list, 'query': q})
elif 'dept' in request.GET and request.GET['dept']:
dept = request.GET['dept']
#employee_list = Employee.objects.filter(dept_code=dept)
#employee_list = Employee.objects.filter(dept_code__contains=dept)
employee_list = Employee.objects.filter(Q(dept_code__contains='MZV') | Q(dept_code__contains='MZ3'))
print(type(employee_list))
return render(request, 'PPDASH/search_results.html',context={'employee_list': employee_list, 'query': dept})
elif 'function' in request.GET and request.GET['function']:
function = request.GET['function']
employee_list = Employee.objects.filter(function=function)
return render(request, 'PPDASH/search_results.html',context={'employee_list': employee_list, 'query': function})
else:
return render(request, 'PPDASH/search_form.html',context={})
search_form.html
<html>
<head>
<title>search_form</title>
</head>
<body>
<form action="/PPDASH/search_results/" method="get">
<a>请输入工号</a>
<input type="text" name="q">
<a>请输入部门</a>
<input type="text" name="dept">
<a>请输入功能</a>
<input type="text" name="function">
<input type="submit" value="Search">
</form>
</body>
search_results.html
<html>
<head>
<title>search_results</title>
</head>
<body>
<table>
<p>学员信息</p>
<tr style="color:White;background-color:#3366FF;font-family:微軟正黑體,Tahoma,Arial,微軟雅黑體;font-size:14px;">
<th scope="col">工號</th>
<th scope="col">姓名</th>
<th scope="col">部門</th>
<th scope="col">Level</th>
<th scope="col">Function</th>
<th scope="col">批次</th>
<th scope="col">邮箱地址</th>
<th scope="col">接纳反馈</th>
<th scope="col">学习敏锐度</th>
<th scope="col">结果导向</th>
<th scope="col">全局思维</th>
<th scope="col">适应力</th>
<th scope="col">成就他人</th>
<th scope="col">领导意愿</th>
<th scope="col">平衡人际与任务</th>
<th scope="col">辅导</th>
<th scope="col">授权委责</th>
<th scope="col">建立成功团队</th>
<th scope="col">管理人际关系</th>
<th scope="col">影响力</th>
<th scope="col">建立伙伴关系</th>
<th scope="col">计划与组织</th>
</tr>
{% for employee in employee_list %}
<tr valign="middle" style="color:Black;background-color:#EFF3FB;border-color:#E0E0E0;border-width:1px;border-style:solid;height:26px;">
<td>{{ employee.eid }}</td>
<td>{{ employee.name }}</td>
<td>{{ employee.dept_code }}</td>
<td>{{ employee.level }}</td>
<td>{{ employee.function }}</td>
<td>{{ employee.batch }}</td>
<td>{{ employee.mail }}</td>
<td>{{ employee.score_jieshoufankui }}</td>
<td>{{ employee.score_xueximinruidu }}</td>
<td>{{ employee.score_jieguodaoxiang }}</td>
<td>{{ employee.score_quanjusiwei }}</td>
<td>{{ employee.score_shiyingli }}</td>
<td>{{ employee.score_chengjiutaren }}</td>
<td>{{ employee.score_lingdaoyiyuan }}</td>
<td>{{ employee.score_pinghengrenjiyurenwu }}</td>
<td>{{ employee.score_fudao }}</td>
<td>{{ employee.score_shouquanweize }}</td>
<td>{{ employee.score_jianlichenggongtuandui }}</td>
<td>{{ employee.score_guanlirenjiguanxi }}</td>
<td>{{ employee.score_yingxiangli }}</td>
<td>{{ employee.score_jianlihuobanguanxi }}</td>
<td>{{ employee.score_jihuayuzuzhi }}</td>
</tr>
{% endfor %}
</table>
</body>
urls.py
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('search_results/', views.search_results, name='search_results'),
path('search_results2/', views.search_results2, name='search_results2'),
path('search_results3/', views.search_results3, name='search_results3'),
]