在某些情況下,有必要在 Django 視圖中執行原始 SQL 查詢。這篇文章深入探討如何有效地執行此類查詢。
要在 Django 視圖中執行原始 SQL 查詢,請使用連線模組及其cursor() 方法來建立連線和遊標。有了遊標,就可以使用execute()方法執行查詢。
from django.db import connection cursor = connection.cursor() cursor.execute('SELECT count(*) FROM people_person')
要將過濾器套用於查詢,請新增指定過濾器的WHERE子句
cursor.execute('''SELECT count(*) FROM people_person WHERE vote = "yes"''')
查詢結果可以使用遊標上的fetchone() 方法。這將傳回一個包含結果值的元組。例如,在上面的範例中,結果是投票設定為「yes」的所有 Person 物件的計數。
row = cursor.fetchone() print(row) # Output: (12,)
整合原始 SQL 查詢進入Django視圖,問題中的程式碼可以修改如下:
from django.db import connection from app.models import Picture def results(request): cursor = connection.cursor() cursor.execute('''SELECT count(*) FROM app_picture''') all_count = cursor.fetchone()[0] cursor.execute('''SELECT count(*) FROM app_picture WHERE vote = "yes"''') yes_count = cursor.fetchone()[0] return render_to_response( 'results.html', {'all': all_count, 'yes': yes_count}, context_instance=RequestContext(request) )
以上是如何在 Django 視圖中高效執行原始 SQL 查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!