简体   繁体   中英

How to annotate strings in django objects

I want to concatinate first name + last name but i'm getting 0 as a value of full name

What I'm trying to do is this

Customer.objects.annotate(full_name=F('first_name') + F('last_name')).filter(full_name='Filan Fisteku')
from django.db.models import Value
from django.db.models.functions import Concat


ss = Customer.objects.annotate(full_name=Concat('first_name', Value(' '), 'last_name')).filter(full_name='Filan Fisteku')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM