MySQL Holen Sie sich erste n Zeichen der String

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