Měli byste použít vlastní SQL místo Manager.raw()
metoda:
from django.db import connection
cursor = connection.cursor()
cursor.execute('SELECT max(value) FROM mytable')
max_value = cursor.fetchone()[0]
Měli byste použít vlastní SQL místo Manager.raw()
metoda:
from django.db import connection
cursor = connection.cursor()
cursor.execute('SELECT max(value) FROM mytable')
max_value = cursor.fetchone()[0]