Hi
My question is exactly like this one, except that it's a query returned in Django.
I want the fields returned by
text_all = RawText.objects.filter(id__contains=county.short_code).order_by('id')
to be returned as
1,1
2,1
10,1
rather than:
1,1
10,1
2,1
What can I do? N.B. ID is a char field, it has to be because of the commas.
Thanks!