vote up 0 vote down star
1

Hi,

I have a model Foo which have a ForeignKey to the User model.

Later, I need to grab all the User's id and put then on a list

foos = Foo.objects.filter(...)

l = [ f.user.id for f in foos ]

But when I do that, django grabs the whole User instance from the DB instead of giving me just the numeric user's id, which exist in each Foo row.

How can I get all the ids without querying each user or using a select_related?

Thanks

flag

3 Answers

vote up 4 vote down check

Use queryset's values() function, which will return a list of dictionaries containing name/value pairs for each attribute passed as parameters:

>>> Foo.objects.all().values('user__id')
[{'user__id': 1}, {'user__id' 2}, {'user__id': 3}]

The ORM will then be able to optimize the SQL query to only return the required fields, instead of doing a "SELECT *".

link|flag
Hi Daniel, Your answer will help me in the future. Thanks! – Tiago Jan 25 at 14:55
Will accessing user__id perform a JOIN? since it has to access the "id" attribute of the User table? – Jj Jan 29 at 15:56
No - this is what I get out of django.db.connection.queries: SELECT "app_foo"."user_id" FROM "app_foo". the "__id" is superfluous, since the foreign key is only the ID to begin with. but specifying it seems more idiomatic to me, to make clear that you're getting an integer and not a user object. – Daniel Jan 29 at 23:30
vote up 2 vote down

Whenever you define a ForeignKey in Django, it automatically adds a FIELD_id field to your model.

For instance, if Foo has a FK to User with an attribute named "user", then you also have an attribute named user_id which contains the id of the related user.

l = [ f.user_id for f in foos ]

Calling .values() also adds performance if you select your attributes wisely

link|flag
vote up 0 vote down

Nevermind... I´m not sure why this didn´t work before when I tried, but this is how to do:

l = [ f.user_id for f in foos ]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.