MysqL text字段判断是否为空
MysqL text字段为空select * from `tableName` where `textField` is null or `textField` = '';
MysqL text字段不为空select * from `tableName` where `textField` is not null AND `textField` != '';