mysql obtiene los primeros n caracteres de la cadena
#get first 10 chars of string
SELECT SUBSTRING(subject, 1, 10) FROM tbl
Friendly Hawk
#get first 10 chars of string
SELECT SUBSTRING(subject, 1, 10) FROM tbl