Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django slice a single field in a queryset

I am trying to grab the first five characters from a char field but for only one field in a queryset but I keep getting various errors. Is there an effective way to do this in the view?

Code I am trying:

var = Model.objects.values('field1', 'field2'[:5], 'field3')
like image 583
Zorpho Avatar asked Dec 01 '22 15:12

Zorpho


1 Answers

You can annotate the queryset with first 5 letters of field2 using Substr function:

from django.db.models.functions import Substr 
queryset = Model.objects.all() 
queryset = queryset.annotate(field2_5=Substr('field2', 1, 5)) 

And, then use the annotated field field2_5 in values:

values = queryset.values('field1', 'field2_5', 'field3')
like image 66
AKS Avatar answered Feb 26 '23 01:02

AKS