我想执行以下查询:
MyModel.objects.annotate(current_name=Coalesce('nickname', 'name')).order_by('current_name')
失败,因为昵称在空时不是NULL,但它是一个空的char(就像Django社区中的惯例一样)。
因此我想做类似的事情:
MyModel.objects.annotate(if empty char: make null, then do coalesce like above). Is this possible?
答案 0 :(得分:7)
使用Conditional expressions,这是Django 1.8中的新功能。
from django.db.models import CharField, Case, When
from django.db.models.functions import Coalesce
MyModel.objects.annotate(
current_name=Coalesce(
Case(
When(nickname__exact='', then=None),
When(nickname__isnull=False, then='nickname'),
default=None,
output_field=CharField()
),
Case(
When(name__exact='', then=None),
When(name__isnull=False, then='name'),
default=None,
output_field=CharField()
))).order_by('current_name')