multiple parameters search

24 views
Skip to first unread message

nobody

unread,
Mar 23, 2015, 8:30:51 PM3/23/15
to django...@googlegroups.com
Hi,

How can I search the database using multiple parameters similar like "where username ="myUserName" or email = "MyEmail"?

I tried to run User.object.get(username = myusername or email = myEmail), but that caused syntax error.

Thank you.

Kind regards,

 - -j

Vijay Khemlani

unread,
Mar 23, 2015, 8:39:13 PM3/23/15
to django...@googlegroups.com
from django.db.models import Q

User.object.get(Q(username=myusername) | Q(email=myEmail))

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8e59ae31-579c-45d2-8490-6c64988c064a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply all
Reply to author
Forward
0 new messages