select id, SUBSTRING(full_name,1, 32), age FROM user
Quoting mysql.com:
For all forms of
SUBSTRING(), the position of the first character in the string from which the substring is to be extracted is reckoned as 1.
select id, SUBSTRING(full_name,1, 32), age FROM user
Quoting mysql.com:
For all forms of
SUBSTRING(), the position of the first character in the string from which the substring is to be extracted is reckoned as 1.