I have a model which have 2 fields.
class MyModel:
tcode = Charfield
created_on = Date field
#some more fields
now this model can have multiple rows with same tcode, and each row can have different day or same.
e.g.
tcode1, 1/2/2001
tcode2, 1/2/2001
tcode2, 2/2/2001
....etc.
I want to filter query on this model such that tcode and date field combination should be unique. how can I get all those objects.
i was trying to do this
MyModel.objects.all().order_by('tcode').distinct('tcode', 'created_on')
Now you may ask that in case if there are two rows with same data in two fields which one row I want! it doesn't matter to me, any row would work fine.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…