首先查询字段的最大长度值
SELECT max(length(message)) FROM apple;
假设查询结果为60220
接着查询具体的记录
SELECT * FROM apple where length(message)=60220;