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)