vote up 10 vote down star
3

Say I have a query like this:

SELECT * FROM my_table WHERE name = "john doe" AND phone = "8183321234" AND email = "johndoe@yahoo.com" AND address = "330 some lane";

But say I only need 3 out of the 4 to match, I know I can write a very long query with several ORs but I was wondering if there was a feature for this?

Thanks.

flag

5 Answers

vote up 19 vote down check
SELECT
  * 
FROM 
  my_table 
WHERE 
  CASE WHEN name = "john doe"           THEN 1 ELSE 0 END +
  CASE WHEN phone = "8183321234"        THEN 1 ELSE 0 END +
  CASE WHEN email = "johndoe@yahoo.com" THEN 1 ELSE 0 END +
  CASE WHEN address = "330 some lane"   THEN 1 ELSE 0 END
  >= 3;

Side note: this will very likely not be using indexes efficiently. On the other hand, there will very likely be no indexes on these kinds of columns anyway.

link|flag
that's awesome - probably slow, but cool. – Brian Apr 17 at 16:04
1  
I think it will suffice to just sum the comparison expressions as they themselse always return 0 or 1: name="john doe" + phone="12345" + email="john.doe@example.com" + address="123 some lane" >= 3. – Gumbo Apr 17 at 16:18
1  
Yes, I suppose I should have said 'holy thundering sesquipedalian verbosity, Batman'. If someone doesn't understand numeric evaluation of boolean expressions, though, they should be able to infer it pretty quickly from the existence of my example. :) – chaos Apr 17 at 18:08
1  
@Tomalak: "sesquipedialian" = "1,5 feet long", from Horace's "Ars Poetica" – Quassnoi Apr 17 at 20:36
1  
A friend of mine used it as an element of his merciless mocking of certain turns of phrase I would use. I love it, of course. It's like I always say: never use a big word where a diminutive lexeme will suffice. – chaos Apr 20 at 20:42
show 13 more comments
vote up 7 vote down

Same thing using indexes:

SELECT  *
FROM    (
        SELECT  id
        FROM    (
                SELECT  id
                FROM    mytable _name
                WHERE   name = 'john doe'
                UNION ALL
                SELECT  id
                FROM    mytable _name
                WHERE   phone = '8183321234'
                UNION ALL
                SELECT  id
                FROM    mytable _name
                WHERE   email = "johndoe@yahoo.com"
                UNION ALL
                SELECT  id
                FROM    mytable _name
                WHERE   address = '330 some lane'
                ) q
        GROUP BY 
                id
        HAVING
                COUNT(*) >= 3
        ) di, mytable t
WHERE   t.id = di.id

See the entry in my blog for performance details.

link|flag
+1, I was just waiting for you ;-) – Tomalak Apr 17 at 16:13
I upvoted you first, that's why it took so long :) – Quassnoi Apr 17 at 16:14
Tedious task, this up-voting business, I know. :-D – Tomalak Apr 17 at 16:20
OBTW: Can you clarify whether or not indexes are used within CASE WHEN predicates? Thank you. – Tomalak Apr 17 at 16:55
1  
Sure. The indexes are not used. I'm going to make today's entry in my blog about this question, see there for details. – Quassnoi Apr 17 at 17:00
show 1 more comment
vote up 14 vote down

Holy overcomplexity, Batman.

SELECT * 
FROM my_table 
WHERE (
    (name = "john doe") +
    (phone = "8183321234") +
    (email = "johndoe@yahoo.com") +
    (address = "330 some lane")
) >= 3;
link|flag
+1 for the Batman comment. I'm not sure if that works, but it does, the +1 is well deserved anyways, as that is very neat. :) – Paolo Bergantino Apr 17 at 16:16
Thank you kindly. And of course it works; I never post SQL without testing it if I can help it. – chaos Apr 17 at 16:26
I am still newb to SQL but I don't understand how that query does what it does. – John Isaacks Apr 17 at 17:00
1  
MySQL has no concept of 'booleans' as distinct from ints. Even most language that do have such a concept allow evaluation of a boolean in numeric context, yielding 0 or 1 integer. – chaos Apr 17 at 17:05
1  
Thanks, I knew you could use 1 or 0 as a Boolean but I didn't know you could use a Boolean as a 1 or a 0 (If that makes sense). – John Isaacks Apr 20 at 19:57
show 1 more comment
vote up 1 vote down

I like the IF construct:

SELECT * FROM my_table
WHERE
(    IF(name    = 'john doe', 1, 0) +
     IF(phone   = '8183311234', 1, 0) +
     IF(email   = 'johndoe@yahoo.com', 1, 0) +
     IF(address = '330 some lane', 1, 0)
) >= 3
link|flag
vote up 0 vote down

Modifying Tomalak's query slightly so that it will use indexes if they are present. Although unless there is an index on each field, a full table scan will happen anyway.

SELECT
*, 
(
    IF(name="john doe", 1, 0) +
    IF(phone = "8183321234", 1, 0) +
    IF(email = "johndoe@yahoo.com", 1, 0) +
    IF(address = "330 some lane", 1, 0) 
) as matchCount
FROM my_table 
WHERE 
    name = "john doe" OR 
    phone = "8183321234" OR 
    email = "johndoe@yahoo.com" OR 
    address = "330 some lane"
HAVING matchCount >= 3
link|flag
You need to indent code samples 4 spaces to make them display nicely. I made this change for you, hope you don't mind. :) – Paolo Bergantino Apr 17 at 16:48
Mysql index merge performs worse than UNION ALL. See here: explainextended.com/2009/03/… – Quassnoi Apr 17 at 16:54
@Paolo how do you indent when you are typing code samples on here? – John Isaacks Apr 17 at 16:57
1  
@John Isaacks: select a piece of code and press a 0100101 button above the edit field. The selected code will be indented with 4 spaces. – Quassnoi Apr 17 at 17:02
1  
@John Isaacks: For copy/paste code samples, it helps to replace all tabs with spaces in a text editor beforehand, since tabs and spaces combined tend to blow the layout. – Tomalak Apr 17 at 17:10
show 1 more comment

Your Answer

Get an OpenID
or

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