Monday, March 23, 2015

Re: multiple parameters search

from django.db.models import Q

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

On Mon, Mar 23, 2015 at 9:30 PM, nobody <jupiter.hce@gmail.com> wrote:
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

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@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.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@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/CALn3ei3vVX4cEQ-evP9BhrGT99Fqoqu%2BvEB4hSyBHYWPbL-aQQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment