MySQL中没有有类似的Select语法

MySQL中没有有类似的Select语法

比如一个字段A为varchar(100)或者Text或者blob
我先select 字段A的前10个字符
这样的语句怎么写?      
使用函数      
晕,什么函数呀,提示一下嘛      
LEFT(str,len)

Returns the leftmost len characters from the string str, or the entire string if there aren't that many characters. Returns NULL if str is NULL. Returns the empty string if len is NULL or less than 1.

LEFT('my left foot',2)                             'my'
LEFT(NULL,10)                                      NULL
LEFT('abc',NULL)                                   ''
LEFT('abc',0)                                      ''      
正是这个,非常感谢