vote up 1 vote down star
1

Hi,

I have first_name, last_name & alias (optional) which I need to search for. So, I need a query to give me all the names that have an alias set.

Only if I could do:

Name.objects.filter(alias!="")

So, what is the equivalent to the above?

Thanks,

VN44CA

flag

63% accept rate

2 Answers

vote up 6 vote down check

You could do this:

Name.objects.filter(alias__isnull=False)

If you absolutely need to check for empty strings, you alternatively could do something like this, although it's more complex and thus slower:

from django.db.models import Q

Name.objects.exclude(Q(alias__isnull=True) | Q(alias__exact=''))

For more info see this.

link|flag
Excellent, this is what I exactly wanted. Thanks. – VN44CA May 10 at 2:56
vote up 0 vote down

Firstly, the Django docs strongly reccomend not using NULL values for string-based fields such as CharField or TextField. Read the documentation for the explanation.

Solution: You can also chain together methods on QuerySets, I think. Try this:

Name.objects.exclude(alias__isnull=True).exclude(alias="")

That should give you the set you're looking for.

link|flag

Your Answer

Get an OpenID
or

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