Is this what you are looking for?
select * from table where char_length(description) > 100
Just a comment about length (). Actually, I am lazy and I will copy it from the official documentation:
Length (str): returns the length of the string str, measured in bytes. A multibyte character counts as several bytes. This means that for a string containing five double-byte characters, LENGTH () returns 10, while CHAR_LENGTH () returns 5.
So length () is not suitable for solving this problem. Instead, user char_length ().
source share