MySQL obtient les premiers n caractères de la chaîne

#get first 10 chars of string
SELECT SUBSTRING(subject, 1, 10) FROM tbl
Friendly Hawk