13π
The result you are expecting is really easy to achieve with a raw query and really, I mean really hard to achieve with pure django.
from django.db.models import FloatField, ExpressionWrapper, F
template = '%(function)s(%(expressions)s AS FLOAT)'
fv1 = Func(F('value1'), function='CAST', template=template)
fv2 = Func(F('value2'), function='CAST', template=template)
ew = ExpressionWrapper(fv1/fv2, output_field = FloatField())
q = MyModel.objects.order_by('-value1').annotate(res = ew)
You wouldnβt accuse this of being elegant but it works on both Mysql and Postgresql.
To provide some background. The rounding is done by the database doing integer division because the field you have are ints. If you want decimal division you need to cast them to decimals. Unfortunately casting is not very easy with Django.
Postgresql has a really elegant way to cast to float. value1::float but this cannot be made use of from inside django (at least as far as I know)
31π
Simply make use of F()
βs support for multiplication to convert one factor to decimal number.
Combined expression then would look like:
from decimal import Decimal
q = MyModel.objects.order_by('-value1').annotate(
res=ExpressionWrapper(
(F('value1') * Decimal('1.0') / F('value2')),
output_field=FloatField()),
)
I find this more elegant way then write raw SQL CAST on value1 field and then do the division.
- [Django]-Why won't Django use IPython?
- [Django]-Django-taggit β how do I display the tags related to each record
- [Django]-Django Footer and header on each page with {% extends }
13π
Unfortunately the ORM F('value1') / F('value2')
operation is executed on the database side, therefore if both fields declared as integer
you will definitely get the integer
result. In Django 1.11.7 you could simply cast one of the F()
expression to decimal
like this:
qs = (
MyModel.objects
.annotate(
res=ExpressionWrapper(
F('value1') * 1.0 / F('value2'),
output_field=FloatField(),
),
)
)
- [Django]-How do you detect a new instance of the model in Django's model.save()
- [Django]-How do you dynamically hide form fields in Django?
- [Django]-Django: list all reverse relations of a model
5π
In v1.10, Django introduced a Cast function which makes this (almost) a breeze β the qualification being that you either need two casts or need to wrap the whole thing in an ExpressionWrapper to avoid a FieldError: Expression contains mixed types. You must set output_field.
q = MyModel.objects.annotate(
res=ExpressionWrapper(
(Cast('value1', FloatField()) / F('value2')),
output_field=FloatField()),
)
This is functionally equivalent to multiplying the enumerator by 1.0
, but an explicit cast makes your intention clearer than a multiplication by a number.
- [Django]-Http POST drops port in URL
- [Django]-Constructing Django filter queries dynamically with args and kwargs
- [Django]-Django character set with MySQL weirdness