Suppose I have a MySQL table of one column: \"Message\". It is of type TEXT.
I now want to query all rows, but the text can be large (not extremely large but large) and I on
Have a look at the MySQL string functions, documented here. You should be able to use some combination of substring and concat to achieve your desired behaviour.