Showing posts with label values_list. Show all posts
Showing posts with label values_list. Show all posts

Sunday, February 21, 2010

Django db lists

Keep forgetting this one.

To get data from the database and convert into a list in Django

Entry.objects.values_list('id', flat=True).order_by('id')