Caveat: This comparison works on SQL Server, I also assume that it works with MySQL, but cannot test it.
SELECT contact_id, last_name
FROM contacts
WHERE last_name > 'B'
ORDER BY last_name
LIMIT 0, 250
Will exclude entries read as alphanumeric βlessβ.
Dan j source
share