select 

  first_name like '%$first_name%' 

+ 3 * last_name like '%$last_name%'

+ 7 * email = '$email'

as score,

first_name, last_name, email, person_id

from person

.

.

.

order by score desc

limit 10



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to