mysql dapatkan karakter pertama dari string

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