最近开始使用Django ORM。我想执行此查询
select student_id from students where student_id like "%97318%" order by CAST(student_id as UNSIGNED) desc;
其中student_id是CharField,我希望将其作为整数查询。我尝试过
students.objects.filter(student_id__contains "97318").order('-student_id')
工作良好。但是不知道,也找不到如何将“ student_id”强制转换为int,就像上面用“ Django ORM”提到的实际MySQL查询一样。我应该使用原始查询还是有出路?让我知道您的建议。
无需使用的更新替代方法extra是强制转换功能(Django 1.10中的新增功能):
extra
>>> from django.db.models import FloatField >>> from django.db.models.functions import Cast >>> Value.objects.create(integer=4) >>> value = Value.objects.annotate(as_float=Cast('integer', FloatField())).get()> >>> print(value.as_float) 4.0
从https://docs.djangoproject.com/en/1.10/ref/models/database- functions/#cast