Values gets onli fields names [1]. Try this: results = Article.objects.filter(qset).values('published_at')
[1]: http://docs.djangoproject.com/en/dev/ref/models/querysets/#values-fields On Mon, Nov 24, 2008 at 13:16, kele <[EMAIL PROTECTED]> wrote: > > hi all, > > i have some codes like these: > > qset = Q(published_at__year = int(year), > published_at__month = int(month), > published_at__day= int(day)) > # results = Article.objects.filter(qset) > results = Article.objects.values(qset,fields= > ['published_at']) > > as the banded line is work fine , but the new one use "value()" is not > function correctly . > what i need is to to query by my qset ,and also the fields i need to > return . > > pls help . > > > thx ! > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---