I'm not SQL expert; I only know basics, but I imagine what I want must be possible. Due to the nature of even describing it though, it's somewhat difficult to search the web or stackoverflow for answers (there might be a term for it that I'm simply don't know).

Anyway, I'm calling it "weighted" conditions in the where clause and here's what I mean:

I want to search for records where a particular field either STARTS WITH some string (let's say "ar") OR that field CONTAINS the string, "ar".

However, I consider the two conditions different, because I'm limiting the number of results returned to 10 and I want the STARTS WITH condition to be weighted more heavily than the CONTAINS condition.

Example:

SELECT *
FROM Employees
WHERE Name LIKE 'ar%' OR Name LIKE '%ar%'
LIMIT 10

The catch is that is that if there are names that START with "ar" they should be favored. The only way I should get back a name that merely CONTAINS "ar" is if there are LESS than 10 names that START with "ar"

How can I do this? (this is a MySQL database)

link|improve this question
feedback

4 Answers

up vote 2 down vote accepted

You need to select them in 2 parts, and add a Preference tag to the results. 10 from each segment, then merge them and take again the best 10. If segment 1 produces 8 entries, then segment 2 of UNION ALL will product the remaining 2

SELECT *
FROM
(
SELECT *, 1 as Preferred
FROM Employees
WHERE Name LIKE 'ar%'
LIMIT 10
UNION ALL
SELECT *
FROM
(
    SELECT *, 2
    FROM Employees
    WHERE Name NOT LIKE 'ar%' AND Name LIKE '%ar%'
    LIMIT 10
) X
) Y
ORDER BY Preferred
LIMIT 10
link|improve this answer
+1. Agreed, this is more efficient. – mellamokb Feb 18 '11 at 0:14
This seems to work for me. Can you explain it at all? I understand (generally speaking) what union means. What are the X and Y and what is the ,1 and ,2? – Stephen Stchur Feb 18 '11 at 1:47
@Stephen - X and Y are just aliases given to subqueries (each derived table must be aliased - so that they can be referenced if required). You can add a column to any result set, by just giving a value and naming (aliasing) the column. In this case, I added a column named "Preferred" with a value of 1 in the first part, and a value of 2 in the 2nd part. The columns is now part of the result (for the query out). – Richard aka cyberkiwi Feb 18 '11 at 2:30
Thanks! This makes sense. – Stephen Stchur Feb 18 '11 at 4:29
feedback

Assign a code value to results, and sort by the code value:

select
    *,
    (case when name like 'ar%' then 1 else 2 end) as priority
from
    employees
where
    name like 'ar%' or name like '%ar%'
order by
    priority
limit 10

Edit:

See Richard aka cyberkiwi's answer for a more efficient solution if there are potentially lots of matches.

link|improve this answer
+1: Beat me to it... – Don Roby Feb 17 '11 at 23:53
If the table contains many matches, then this can be slower since it has to first assign a priority to all matches. – Richard aka cyberkiwi Feb 18 '11 at 0:07
Thanks to both of you! – Stephen Stchur Feb 18 '11 at 4:30
feedback

Try this (don't have a MySQL instance immediately available to test with):

SELECT * FROM
   (SELECT * FROM Employees WHERE Name LIKE 'ar%'
    UNION
    SELECT * FROM Employees WHERE Name LIKE '%ar%'
   )
 LIMIT 10

There are probably better ways to do it, but that immediately sprang to mind.

link|improve this answer
feedback

My solution is:

SELECT *
FROM Employees
WHERE Name LIKE '%ar%'
ORDER BY instr(name, 'ar'), name
LIMIT 10

The instr() looks for the first occurrence of the pattern in question. AR% will come before xxAR.

This prevents:

  1. Should only do table scan 1 time. Unions and derived tables do 3. The first two on the columns to filter out the patterns and then the 3rd on the subset to find where they equal - since union filters out dupes.

  2. Gives a true sort based on the location of the pattern. Wx > xW > xxW > etc...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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