FYI, there's a very large section of the MySQL section dedicated to string functions. But rather than trouble you with looking it up yourself, I'll just save my breath and tell you: Use the MySQL function SUBSTRING():
SELECT SUBSTRING(field_name,1,128) FROM ...
or
SELECT SUBSTRING(field_name,1,128) AS some_name FROM ...
Not so tough, eh? Note that MySQL's string functions differently than PHP's, in that the first character has an index of 1 rather than zero, so MySQL's SUBSTRING('abc',1,1) will return 'a', whereas PHP's substr('abc',1,1) will return 'b'. By the way, PHP's substr() would be another way to solve your problem. Do us a favor, though, and look it up next time.