Forum Moderators: coopster
I tried "WHERE strlen(`field`) > 2" but that didn't work. Can someone point me in the right direction?
Thanks.
You're very close, the SQL function for length is 'length'. So:
WHERE length(`field`) > 2
Hope that helps.
Chad