Adrian Holovaty wrote:
> On 5/23/06, Gary Wilson <[EMAIL PROTECTED]> wrote:
> > Yes, I guess I could split the text entered and then do a search for
> > each word in both first_name and last_name like the admin interface
> > does... just seems like this would return many more results than wanted
> > with a large user group.
>
> It wouldn't return more results than desired; it would return exactly
> the same results as if you'd queried for the derived field.
>
> In other words, these two queries would return the exact same results:
>
>     SELECT * FROM foo WHERE first_name = 'Gary' AND last_name = 'Wilson';
>     SELECT * FROM foo WHERE (first_name || ' ' || last_name) = 'Gary Wilson';

Ah, I did not see the AND it puts in there after constructing the OR
query list (django.contrib.admin.views.main.get_query_set for those
following along).

> You're best off searching by the exact fields rather than messing with
> derived fields.
>
> Come to think of it, this seems like a user-interface problem, not a
> database problem. I'm assuming you want your users to be able to enter
> a full name in a single text box, right? In that case, just split the
> input by spaces and assume the first string is the first_name and the
> second string is the last_name. (Of course, you'd want some error
> correction in there to account for one- or three-word searches.)

Yes, I would like to provide my users with a single search box where
they could enter a first name, a last name, or a first name and last
name.  So maybe...

if one word entered:
    search in last name OR first name
elif two words entered:
    search in (last name AND first name) OR (first name AND last name)
elif more than two words entered:
    ignore words in between first and last and treat as two words
entered


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to