I need to filter some results from a query where the field must have more than a given length. I know that doesn't work, but it would be something like this:
SELECT * FROM MyTable WHERE COUNT(description) > 50
Is that doable or will I have to filter that on PHP(in my case) later?